Remove unneeded # noqa comment (#6979)

This commit is contained in:
Alex Waygood
2022-01-20 13:11:23 +00:00
committed by GitHub
parent 852723aa69
commit bcd9ca47f6

View File

@@ -73,7 +73,7 @@ class Decimal(object):
def __rmul__(self, other: _Decimal, context: Context | None = ...) -> Decimal: ...
def __rsub__(self, other: _Decimal, context: Context | None = ...) -> Decimal: ...
def __rtruediv__(self, other: _Decimal, context: Context | None = ...) -> Decimal: ...
def __str__(self, eng: bool = ..., context: Context | None = ...) -> str: ... # noqa Y029
def __str__(self, eng: bool = ..., context: Context | None = ...) -> str: ...
def __sub__(self, other: _Decimal, context: Context | None = ...) -> Decimal: ...
def __truediv__(self, other: _Decimal, context: Context | None = ...) -> Decimal: ...
def remainder_near(self, other: _Decimal, context: Context | None = ...) -> Decimal: ...