We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b04ca1e commit c8a689fCopy full SHA for c8a689f
2 files changed
sdks/python/apache_beam/ml/anomaly/specifiable.py
@@ -417,7 +417,7 @@ def unspecifiable(cls):
417
_register(cls, spec_type)
418
419
class_name = cls.__name__
420
- original_init = cls.__init__ # type: ignore[misc]
+ original_init: Any = cls.__init__ # type: ignore[misc]
421
cls.__init__ = new_init # type: ignore[misc]
422
if just_in_time_init:
423
cls.__getattr__ = new_getattr
sdks/python/pyproject.toml
@@ -213,5 +213,4 @@ invalid-inheritance = "ignore"
213
not-iterable = "ignore"
214
unexpected-keyword = "ignore"
215
invalid-yield = "ignore"
216
-bad-argument-count = "ignore"
217
bad-typed-dict-key = "ignore"
0 commit comments