diff --git a/django_typer/management/__init__.py b/django_typer/management/__init__.py index e7046485..7be7dbc6 100644 --- a/django_typer/management/__init__.py +++ b/django_typer/management/__init__.py @@ -1921,7 +1921,7 @@ def __new__( try: # avoid unnecessary work creating the TyperCommand class # is there a less weird way to do this? - is_base_init = not TyperCommand + is_base_init = not TyperCommand # type: ignore[truthy-function] except NameError: is_base_init = True typer_app = None diff --git a/django_typer/management/commands/shellcompletion.py b/django_typer/management/commands/shellcompletion.py index 611b2240..fce8a913 100644 --- a/django_typer/management/commands/shellcompletion.py +++ b/django_typer/management/commands/shellcompletion.py @@ -553,7 +553,7 @@ def get_completions(self, args, incomplete): def call_fallback(fb: t.Optional[str]) -> None: fallback = import_string(fb) if fb else self.django_fallback if cmd_str and inspect.signature(fallback).parameters: - fallback(cmd_str) # pyright: ignore[reportCallIssue] + fallback(cmd_str) # type: ignore else: fallback()