Skip to content

Commit

Permalink
Add back arg
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
  • Loading branch information
RyanLua authored Dec 27, 2024
1 parent 4db028f commit 0f6e037
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/instawebhooks/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ def closure_check_regex(arg_value: str):
)
group.add_argument("-q", "--quiet", help="hide all logging", action="store_true")
group.add_argument("-v", "--verbose", help="show debug logging", action="store_true")
parser.add_argument(
"-p",
"--catchup",
help="send the last latest posts on startup regardless of time",
type=int,
default=0,
)
parser.add_argument(
"-i",
"--refresh-interval",
Expand Down

0 comments on commit 0f6e037

Please sign in to comment.