Skip to content

Commit 3bb5c11

Browse files
committed
Remove unused noqa comments
1 parent 9728213 commit 3bb5c11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

domdf_python_tools/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103

104104
_T = TypeVar("_T")
105105

106-
SupportsLessThanT = TypeVar("SupportsLessThanT", bound=SupportsLessThan) # noqa: Y001
106+
SupportsLessThanT = TypeVar("SupportsLessThanT", bound=SupportsLessThan)
107107

108108
__all__ = [
109109
"pyversion",
@@ -518,7 +518,7 @@ def redirect_output(combine: bool = False) -> Iterator[Tuple[StringIO, StringIO]
518518
.. versionadded:: 2.6.0
519519
520520
:param combine: If :py:obj:`True` ``stderr`` is combined with ``stdout``.
521-
""" # noqa: D400
521+
"""
522522

523523
if combine:
524524
stdout = stderr = StringIO()

0 commit comments

Comments
 (0)