removed opt check
This commit is contained in:
parent
74d714f159
commit
08c76c47bd
11
setup.cfg
11
setup.cfg
|
@ -19,3 +19,14 @@ max-line-length = 120
|
||||||
[flake8]
|
[flake8]
|
||||||
ignore = E731,W504,F401,F841
|
ignore = E731,W504,F401,F841
|
||||||
max-line-length = 120
|
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__.:
|
||||||
|
|
Loading…
Reference in New Issue