Skip to content

Commit 1825d1f

Browse files
committed
Update comment after re-testing coverage issue
1 parent 949bcd9 commit 1825d1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dataclass_binder/_impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ def get_field_docstrings(dataclass: type[Any]) -> Mapping[str, str]:
870870
scope = name
871871
case ast.Expr(value=ast.Constant(value=str(docstring))):
872872
if scope is None:
873-
# When using 'scope is not None', Coverage 6.4.4 will consider the 'is None' branch uncovered.
873+
# When using 'scope is not None', Coverage 7.12.0 will consider the 'is None' branch uncovered.
874874
pass
875875
else:
876876
docstrings[scope] = cleandoc(docstring)

0 commit comments

Comments
 (0)