We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 597c5e2 commit 1780896Copy full SHA for 1780896
src/django_github_app/management/commands/github.py
@@ -1,6 +1,7 @@
1
from __future__ import annotations
2
3
from typing import Annotated
4
+from typing import Any
5
from typing import Literal
6
7
from django_typer.management import Typer
@@ -9,7 +10,7 @@
9
10
from django_github_app.models import Installation
11
from django_github_app.models import Repository
12
-cli = Typer(help="Manage your GitHub App")
13
+cli: Typer[..., Any] = Typer(help="Manage your GitHub App")
14
15
16
@cli.command()
0 commit comments