Skip to content

Commit e708ddc

Browse files
committed
cli: ignore assignment type error
1 parent c5f7ac8 commit e708ddc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixpkgs_review/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
try:
2222
import argcomplete
2323
except ImportError:
24-
argcomplete = None
24+
argcomplete = None # type: ignore[assignment]
2525

2626

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

0 commit comments

Comments
 (0)