Skip to content

Commit 93a0bee

Browse files
committed
Remove unused noqa comments
1 parent 50dcf93 commit 93a0bee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

coverage_pyver_pragma/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ def evaluate_exclude(expression: str) -> bool:
7171
return all(list(GRAMMAR.parseString(expression.lower(), parseAll=True)))
7272

7373

74-
class PythonParser(coverage.python.PythonParser): # noqa: D102
74+
class PythonParser(coverage.python.PythonParser):
7575

76-
def lines_matching(self, *regexes): # noqa: D102
76+
def lines_matching(self, *regexes):
7777

7878
combined = join_regex([*regexes, *DEFAULT_EXCLUDE])
7979

0 commit comments

Comments
 (0)