From 08c76c47bd092460d7840a362eaba58c68efa908 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 24 Jul 2019 15:38:15 -0400 Subject: [PATCH] removed opt check --- setup.cfg | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/setup.cfg b/setup.cfg index c7616dab..268362a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,3 +19,14 @@ max-line-length = 120 [flake8] ignore = E731,W504,F401,F841 max-line-length = 120 + +[report] +exclude_lines = + pragma: no cover + def __repr__ + if self.debug: + if settings.DEBUG + raise AssertionError + raise NotImplementedError + if 0: + if __name__ == .__main__.: