Skip to content

Commit

Permalink
cli: ignore assignment type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Dec 17, 2024
1 parent c5f7ac8 commit e708ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixpkgs_review/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
try:
import argcomplete
except ImportError:
argcomplete = None
argcomplete = None # type: ignore[assignment]


def regex_type(s: str) -> Pattern[str]:
Expand Down

0 comments on commit e708ddc

Please sign in to comment.