From bcd9ca47f6d45f4a997012e937c78a6ab6dc24bf Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Thu, 20 Jan 2022 13:11:23 +0000 Subject: [PATCH] Remove unneeded `# noqa` comment (#6979) --- stdlib/@python2/decimal.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/@python2/decimal.pyi b/stdlib/@python2/decimal.pyi index 09bbe894b..f798d8811 100644 --- a/stdlib/@python2/decimal.pyi +++ b/stdlib/@python2/decimal.pyi @@ -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: ...