From b51755112b3c4561b3e40d105cd9f4c960d7ebb5 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Fri, 7 Jul 2023 12:03:16 +0900 Subject: [PATCH] click 8.1.4 somehow broke their types --- src/aapns/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aapns/cli.py b/src/aapns/cli.py index aabe0ff..1f6c3b6 100644 --- a/src/aapns/cli.py +++ b/src/aapns/cli.py @@ -54,7 +54,7 @@ def main(): pass -@main.command() +@main.command() # type: ignore[arg-type, attr-defined] @click.argument("token") @click.argument("body") @click.option("--title", default=None) @@ -108,7 +108,7 @@ def server( logging.exception("Simple notification") -@main.command() +@main.command() # type: ignore[arg-type, attr-defined] @click.argument("device_id") @click.argument("app_id") @click.argument("body")