Commit 37400aa7 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Disable pycodestyle E226

The rule doesn't adequately cover different uses of arithmetic
expressions, there are many cases where non-spaced expressions can be
more readable.
parent 7770d079
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -11,6 +11,9 @@ pycodestyle = [
	# DISABLE "Missing whitespace around bitwise or shift operator"
	"-E227",

	# DISABLE "missing whitespace around arithmetic operator"
	"-E226",

	# DISABLE "Line too long"
	# Prefer B950 implementation
	"-E501",