@@ -107,12 +107,11 @@ def __init__(
107107 self ,
108108 java_name , # type: Text
109109 padding # type: Callable
110- ):
110+ ): # noqa=D107
111111 # type: (...) -> None
112- """Workaround pending resolution of attrs/mypy interaction.
113- https://github.com/python/mypy/issues/2088
114- https://github.com/python-attrs/attrs/issues/215
115- """
112+ # Workaround pending resolution of attrs/mypy interaction.
113+ # https://github.com/python/mypy/issues/2088
114+ # https://github.com/python-attrs/attrs/issues/215
116115 self .java_name = java_name
117116 self .padding = padding
118117 attr .validate (self )
@@ -139,12 +138,11 @@ def __init__(
139138 self ,
140139 java_name , # type: Text
141140 padding # type: Callable
142- ):
141+ ): # noqa=D107
143142 # type: (...) -> None
144- """Workaround pending resolution of attrs/mypy interaction.
145- https://github.com/python/mypy/issues/2088
146- https://github.com/python-attrs/attrs/issues/215
147- """
143+ # Workaround pending resolution of attrs/mypy interaction.
144+ # https://github.com/python/mypy/issues/2088
145+ # https://github.com/python-attrs/attrs/issues/215
148146 self .java_name = java_name
149147 self .padding = padding
150148 attr .validate (self )
@@ -187,12 +185,11 @@ def __init__(
187185 digest , # type: Callable
188186 mgf , # type: Callable
189187 mgf_digest # type: Callable
190- ):
188+ ): # noqa=D107
191189 # type: (...) -> None
192- """Workaround pending resolution of attrs/mypy interaction.
193- https://github.com/python/mypy/issues/2088
194- https://github.com/python-attrs/attrs/issues/215
195- """
190+ # Workaround pending resolution of attrs/mypy interaction.
191+ # https://github.com/python/mypy/issues/2088
192+ # https://github.com/python-attrs/attrs/issues/215
196193 self .java_name = java_name
197194 self .padding = padding
198195 self .digest = digest
@@ -228,12 +225,11 @@ def __init__(
228225 self ,
229226 java_name , # type: Text
230227 mode # type: Callable
231- ):
228+ ): # noqa=D107
232229 # type: (...) -> None
233- """Workaround pending resolution of attrs/mypy interaction.
234- https://github.com/python/mypy/issues/2088
235- https://github.com/python-attrs/attrs/issues/215
236- """
230+ # Workaround pending resolution of attrs/mypy interaction.
231+ # https://github.com/python/mypy/issues/2088
232+ # https://github.com/python-attrs/attrs/issues/215
237233 self .java_name = java_name
238234 self .mode = mode
239235 attr .validate (self )
@@ -262,12 +258,11 @@ def __init__(
262258 self ,
263259 java_name , # type: Text
264260 cipher # type: Callable
265- ):
261+ ): # noqa=D107
266262 # type: (...) -> None
267- """Workaround pending resolution of attrs/mypy interaction.
268- https://github.com/python/mypy/issues/2088
269- https://github.com/python-attrs/attrs/issues/215
270- """
263+ # Workaround pending resolution of attrs/mypy interaction.
264+ # https://github.com/python/mypy/issues/2088
265+ # https://github.com/python-attrs/attrs/issues/215
271266 self .java_name = java_name
272267 self .cipher = cipher
273268 attr .validate (self )
0 commit comments