kivy / kivy-ios

Toolchain for compiling Python / Kivy / other libraries for iOS
https://kivy.org/docs/guide/packaging-ios.html
MIT License
758 stars 238 forks source link

Flake8 does not support inline comments for any of the keys #754

Closed misl6 closed 1 year ago

misl6 commented 1 year ago

See:

From https://flake8.pycqa.org/en/latest/user/configuration.html :

Following the recommended settings for Python’s configparser, Flake8 does not support inline comments for any of the keys. So while this is fine:

[flake8]
per-file-ignores =
# imported but unused
__init__.py: F401

this is not:

[flake8]
per-file-ignores =
__init__.py: F401 # imported but unused

Same of https://github.com/kivy/python-for-android/pull/2708