We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pawamoy
Learn more about funding links in repositories.
Report abuse
1 parent 9b148e0 commit 3b4e386Copy full SHA for 3b4e386
src/griffe_warnings_deprecated/extension.py
@@ -19,7 +19,7 @@ def _deprecated(obj: Class | Function) -> str | None:
19
if decorator.callable_path in _decorators and isinstance(decorator.value, ExprCall):
20
first_arg = decorator.value.arguments[0]
21
try:
22
- return ast.literal_eval(first_arg) # type: ignore
+ return ast.literal_eval(first_arg) # type: ignore[arg-type]
23
except ValueError:
24
logger.debug("%s is not a static string", str(first_arg))
25
return None
0 commit comments