Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
kalefranz committed Sep 6, 2017
1 parent 441219f commit 7d4baa7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions conda/models/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
from itertools import chain
from logging import getLogger

from ..base.constants import (DEFAULTS_CHANNEL_NAME, DEFAULT_CHANNELS_UNIX, DEFAULT_CHANNELS_WIN,
MAX_CHANNEL_PRIORITY, UNKNOWN_CHANNEL)
from ..base.constants import (DEFAULTS_CHANNEL_NAME, MAX_CHANNEL_PRIORITY, UNKNOWN_CHANNEL)
from ..base.context import context
from ..common.compat import ensure_text_type, isiterable, iteritems, odict, with_metaclass
from ..common.path import is_path, win_path_backout
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool:pytest]
minversion = 3.0
testpaths = conda tests
norecursedirs = .* *.egg* build dist conda/_vendor/* conda_env/*
norecursedirs = .* *.egg* build dist env ve conda/_vendor/* conda_env/*
addopts =
--ignore setup.py
--ignore conda/__main__.py
Expand All @@ -22,13 +22,13 @@ markers =
[pep8]
max-line-length = 99
ignore = E126,E133,E226,E241,E242,E302,E704,E731,W503
exclude = build/*,.tox/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda/common/compat.py,conda_env/compat.py
exclude = build/*,.tox/*,env/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda/common/compat.py,conda_env/compat.py


[flake8]
max-line-length = 99
ignore = E126,E133,E226,E241,E242,E302,E704,E731,W503
exclude = build/*,.tox/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda/common/compat.py,conda_env/compat.py
exclude = build/*,.tox/*,env/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda/common/compat.py,conda_env/compat.py


[coverage:report]
Expand Down

0 comments on commit 7d4baa7

Please sign in to comment.