pylint: Disable cyclic-import check

Yeah it has a point... but the code works fine in practice, and the
remaining issues will need some decent reorg to fix.
This commit is contained in:
Cole Robinson 2014-09-19 20:13:52 -04:00
parent 3feedb76e9
commit d119a1bf6a

View File

@ -34,7 +34,7 @@ load-plugins=
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
disable=Design,Similarities,invalid-name,missing-docstring,line-too-long,too-many-lines,superfluous-parens,bad-whitespace,locally-disabled,no-self-use,unnecessary-lambda,star-args,fixme,global-statement,bare-except,anomalous-backslash-in-string,broad-except
disable=Design,Similarities,invalid-name,missing-docstring,line-too-long,too-many-lines,superfluous-parens,bad-whitespace,locally-disabled,no-self-use,unnecessary-lambda,star-args,fixme,global-statement,bare-except,anomalous-backslash-in-string,broad-except,cyclic-import
[REPORTS]