Skip to content

Disable PyLint warning C0209

Michał Kępień requested to merge michal/disable-pylint-warning-C0209 into main

PyLint 2.11 reports a new warning, C0209 (consider-using-f-string). Since f-strings are only available in Python 3.6+, existing scripts cannot be updated to use this feature just yet because they would stop working with older Python versions. Instead, disable PyLint warning C0209 for the time being. Sort all disabled warnings in .pylintrc.

Blocks #2945 (closed)

Merge request reports