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

Disable R503 flake8-return message

parent 5a318276
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -119,6 +119,12 @@ flake8-print = [
]
flake8-return = [
	"+R*",

	# DISABLE "missing explicit return at the end of function able to return
	# non-None value"
	# Mypy will report this, plugin also cannot do exhaustiveness check of match
	# block, leading to false-positives.
	"-R503",
]

[tool.flakeheaven.exceptions."**/__init__.py"]