From 1657892299ef08c6eec8690a8765045bbefe3410 Mon Sep 17 00:00:00 2001 From: FateWalker <21262207+opabravo@users.noreply.github.com> Date: Sun, 15 Jan 2023 17:45:21 +0800 Subject: [PATCH] Fix git repo name --- README.MD | 4 ++-- main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.MD b/README.MD index d04c5e3..c565925 100644 --- a/README.MD +++ b/README.MD @@ -23,7 +23,7 @@ GSS實習生Google Sheet簽到的自動化腳本POC ```console usage: main.py [-h] [-v] [-c | -s SHOW_WORKING_HOURS] -GSS實習生通用腳本 https://github.com/opabravo/intern-auto-checkin +GSS實習生通用腳本 https://github.com/opabravo/intern-checkin-poc options: -h, --help show this help message and exit @@ -53,7 +53,7 @@ Press any key to exit... #### Clone後安裝依賴 ```bash -git clone https://github.com/opabravo/intern-auto-checkin.git +git clone https://github.com/opabravo/intern-checkin-poc.git cd intern-auto-checkin poetry install poetry shell diff --git a/main.py b/main.py index f9653e4..5c5acb0 100644 --- a/main.py +++ b/main.py @@ -222,7 +222,7 @@ def fetch_working_hours(year: int): def init_parser(): """Argparse initialization""" parser = argparse.ArgumentParser( - description='GSS實習生通用腳本\nhttps://github.com/opabravo/intern-auto-checkin') + description='GSS實習生通用腳本\nhttps://github.com/opabravo/intern-checkin-poc') parser.add_argument('-v', '--verbose', action='store_true', help='顯示詳細資訊,並存到logs.log') group = parser.add_mutually_exclusive_group()