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 18, 2024
1 parent 9a7e8f8 commit 4466fc8
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 4466fc8

Please sign in to comment.