Skip to content

Commit 4664b97

Browse files
committed
ci: Ignore type warning
1 parent 632d8e9 commit 4664b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/gen_credits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _extra_marker(req: Requirement) -> str | None:
5555
if not req.marker:
5656
return None
5757
try:
58-
return next(marker[2].value for marker in req.marker._markers if getattr(marker[0], "value", None) == "extra")
58+
return next(marker[2].value for marker in req.marker._markers if getattr(marker[0], "value", None) == "extra") # type: ignore[union-attr]
5959
except StopIteration:
6060
return None
6161

0 commit comments

Comments
 (0)