Skip to content

Commit f0ab9b9

Browse files
committed
Enable ruff LOG ruleset which warns about logger issues
1 parent 53d97a2 commit f0ab9b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ select = [
188188
# "INP", # flake8-no-pep420 (warn about files in the implicit namespace - i.e. force creation of __init__.py files to make packages)
189189
"INT", # flake8-gettext (warnings that only apply when you are internationalizing your strings)
190190
"ISC", # flake8-implicit-str-concat (warnings related to implicit vs explicit string concatenation)
191-
# "LOG", # flake8-logging (warn about potential logger issues, but very pedantic)
191+
"LOG", # flake8-logging (warn about potential logger issues, but very pedantic)
192192
# "N", # pep8-naming (force idiomatic naming for classes, functions/methods, and variables/arguments)
193193
"NPY", # NumPy specific rules
194194
"PD", # pandas-vet (Pandas specific rules)

0 commit comments

Comments
 (0)