We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 632d8e9 commit 4664b97Copy full SHA for 4664b97
scripts/gen_credits.py
@@ -55,7 +55,7 @@ def _extra_marker(req: Requirement) -> str | None:
55
if not req.marker:
56
return None
57
try:
58
- return next(marker[2].value for marker in req.marker._markers if getattr(marker[0], "value", None) == "extra")
+ return next(marker[2].value for marker in req.marker._markers if getattr(marker[0], "value", None) == "extra") # type: ignore[union-attr]
59
except StopIteration:
60
61
0 commit comments