Add typing annotation to cli/__init__.py

This commit is contained in:
Justin ! 2023-07-14 01:52:14 -04:00 committed by Hugo
parent 4237ff863c
commit 08616abbb5

View file

@ -45,7 +45,7 @@ def catch_errors(f):
@click.option("--config", "-c", metavar="FILE", help="Config file to use.") @click.option("--config", "-c", metavar="FILE", help="Config file to use.")
@pass_context @pass_context
@catch_errors @catch_errors
def app(ctx, config): def app(ctx, config: str):
""" """
Synchronize calendars and contacts Synchronize calendars and contacts
""" """