We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 949bcd9 commit 1825d1fCopy full SHA for 1825d1f
1 file changed
src/dataclass_binder/_impl.py
@@ -870,7 +870,7 @@ def get_field_docstrings(dataclass: type[Any]) -> Mapping[str, str]:
870
scope = name
871
case ast.Expr(value=ast.Constant(value=str(docstring))):
872
if scope is None:
873
- # When using 'scope is not None', Coverage 6.4.4 will consider the 'is None' branch uncovered.
+ # When using 'scope is not None', Coverage 7.12.0 will consider the 'is None' branch uncovered.
874
pass
875
else:
876
docstrings[scope] = cleandoc(docstring)
0 commit comments