PyCQA / flake8-pyi

A plugin for Flake8 that provides specializations for type hinting stub files
MIT License
73 stars 23 forks source link

Allow simple assignments to `None` in enum class scopes #479

Closed AlexWaygood closed 7 months ago

AlexWaygood commented 7 months ago

Fixes a false positive in uuid.pyi currently showing up in CI for https://github.com/python/typeshed/pull/11299

github-actions[bot] commented 7 months ago

⚠ Flake8 diff showing the effect of this PR on typeshed:

> ./stubs/tensorflow/tensorflow/saved_model/experimental.pyi:37:18: NQA102 "# noqa: Y026" has no matching violations
AlexWaygood commented 7 months ago

⚠ Flake8 diff showing the effect of this PR on typeshed:

> ./stubs/tensorflow/tensorflow/saved_model/experimental.pyi:37:18: NQA102 "# noqa: Y026" has no matching violations

Nice, it fixes a pre-existing false positive as well.