Verified Commit 46380103 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Explicitly disable pycodestyle warnings

It is possible some were being activated implicitly.
parent 1c71ad97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ pycodestyle = [
	# Warnings not considered, many are not relevant to Python ~=3.9 and will
	# cause syntax errors anyway, others concern whitespace which is fixed by
	# a pre-commit hook.
	"+E*",
	"+E*", "-W*",

	# DISABLE "Continuation line missing indentation or outdented"
	"-E122",