Merge pull request #396 from pathcl/master

PEP8 errors
This commit is contained in:
Jakub Roztočil
2016-01-01 18:37:49 -03:00
9 changed files with 23 additions and 21 deletions

View File

@ -40,12 +40,12 @@ install_requires = [
'Pygments>=1.5'
]
### Conditional dependencies:
# Conditional dependencies:
# sdist
if not 'bdist_wheel' in sys.argv:
if 'bdist_wheel' not in sys.argv:
try:
#noinspection PyUnresolvedReferences
# noinspection PyUnresolvedReferences
import argparse
except ImportError:
install_requires.append('argparse>=1.2.1')