Verified Commit 1cb65397 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Disable flake8-bugbear B011 check

parent ddbfdd79
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -103,6 +103,11 @@ flake8-bugbear = [
	# Would be nice if could take into account use as a non-mutable type
	"-B006",

	# DISABLE "Do not call assert False since python -O removes these calls.
	# Instead callers should raise AssertionError()."
	# Like… no duh. Thats why I use assert.
	"-B011",

	# DISABLE "release is an empty method in an abstract base class, [...]"
	# Until abstract methods are optional, empty optional "abstract" methods
	# stay