diff --git a/pyproject.toml b/pyproject.toml index 4cb31da..caed365 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wyzely-detect" -version = "0.1.1" +version = "0.2" description = "Recognize faces/objects in a video stream (from a webcam or a security camera) and send notifications to your devices" authors = ["slashtechno <77907286+slashtechno@users.noreply.github.com>"] repository = "https://github.com/slashtechno/wyzely-detect" diff --git a/wyzely_detect/utils/cli_args.py b/wyzely_detect/utils/cli_args.py index ff6904c..7c428bd 100644 --- a/wyzely_detect/utils/cli_args.py +++ b/wyzely_detect/utils/cli_args.py @@ -95,6 +95,7 @@ def set_argparse(): "--ntfy-url", default=os.environ["NTFY_URL"] if "NTFY_URL" in os.environ and os.environ["NTFY_URL"] != "" + # This is None but there is a default set in notify.py else None, type=str, help="The URL to send notifications to",