Skip to content

Commit 5e694d0

Browse files
Style fixes and CI retest
1 parent 3430afe commit 5e694d0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.coveragerc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ include = pythonrepo*,tests*
77
exclude_lines =
88
# Have to re-enable the standard pragma
99
pragma: no cover
10-
1110
except Exception
1211
except BaseException:
1312
# Don't complain if tests don't hit defensive assertion code:
@@ -19,7 +18,7 @@ exclude_lines =
1918
except OSError
2019

2120
# Don't complain if non-runnable code isn't run:
22-
if __name__ in '__main__':
21+
if __name__ in '__main__':
2322

2423
ignore_errors = True
2524

.flake8.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[flake8]
2-
ignore = W191,W391
2+
ignore = W191,W391,E117
33
max-line-length = 100
44
exclude =
55
# No need to traverse our git directory

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pythonrepo
3-
version = 1.1.2
3+
version = 1.1.3
44
author = Mr. Walls
55
author-email = [email protected]
66
summary = python-repo template

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
raise ImportError("""Not Implemented.""")
2626

2727

28-
def readFile(filename="""./README.md"""):
28+
def readFile(filename):
29+
"""Helper Function to read files"""
2930
theResult = None
3031
try:
3132
with open(str("""./{}""").format(str(filename))) as f:
@@ -48,7 +49,7 @@ def readFile(filename="""./README.md"""):
4849

4950
setup(
5051
name="""pythonrepo""",
51-
version="""1.1.2""",
52+
version="""1.1.3""",
5253
description="""Python Repo""",
5354
long_description=readme,
5455
install_requires=requirements,

0 commit comments

Comments
 (0)