Skip to content

Commit fbce52d

Browse files
committed
fix pyright linting issue
1 parent d93e8f5 commit fbce52d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_typer/management/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2678,7 +2678,7 @@ def make_command(func: t.Callable[P, R]) -> t.Callable[P, R]:
26782678
# Rich settings
26792679
rich_help_panel=rich_help_panel,
26802680
**kwargs,
2681-
)(_strip_static(func))
2681+
)(_strip_static(func)) # pyright: ignore[reportCallIssue, reportArgumentType]
26822682
return func
26832683

26842684
return make_command

0 commit comments

Comments
 (0)