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 74fcee4 commit 03461faCopy full SHA for 03461fa
src/django_typer/management/commands/shellcompletion.py
@@ -31,8 +31,10 @@
31
32
from click import get_current_context
33
from click.core import ParameterSource
34
-from click.parser import split_arg_string
35
-from click.shell_completion import CompletionItem
+from click.shell_completion import (
+ CompletionItem,
36
+ split_arg_string, # pyright: ignore[reportPrivateImportUsage]
37
+)
38
from django.core.management import CommandError, ManagementUtility
39
from django.utils.module_loading import import_string
40
from django.utils.translation import gettext_lazy as _
0 commit comments