Skip to content

Commit ef2ee9d

Browse files
author
Saurabh Kumar
committed
chore(setup.py): fix flake8
1 parent 96e3f65 commit ef2ee9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ universal = 1
33

44
[flake8]
55
max-line-length = 120
6-
exclude = .tox,.git,docs,venv
6+
exclude = .tox,.git,docs,venv,.venv
77

88
[metadata]
99
description-file = README.rst
1010

1111
[tool:pytest]
12-
norecursedirs = .svn _build tmp* dist venv .git
12+
norecursedirs = .svn _build tmp* dist venv .git .venv
1313
flake8-max-line-length = 120

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
try:
66
with open('README.rst') as readme_file:
77
readme = readme_file.read()
8-
except:
8+
except Exception:
99
readme = 'Checkout http://github.com/theskumar/python-dotenv for more details.'
1010

1111
setup(

0 commit comments

Comments
 (0)