Skip to content

Commit 9858f23

Browse files
committed
disable pylint logging-format-interpretation for f-strings
This one is basically a warning for potentional performance loss, for scenarios when log message is not really logged. With 3 instances of such problem in pyodata and the perf loss being neglegable, IMHO is better to not mix old and new style of formatting. Therefore disabling the warning. See more: pylint-dev/pylint#2395 pylint-dev/pylint#1788 https://stackoverflow.com/questions/34619790/pylint-message-logging-format-interpolation
1 parent aeca984 commit 9858f23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ confidence=
6565
# --enable=similarities". If you want to run only the classes checker, but have
6666
# no Warning level messages displayed, use"--disable=all --enable=classes
6767
# --disable=W"
68-
disable=locally-disabled, super-with-arguments, raise-missing-from
68+
disable=locally-disabled, super-with-arguments, raise-missing-from, logging-fstring-interpolation
6969

7070

7171
[REPORTS]

0 commit comments

Comments
 (0)