We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86d4374 commit 5f11d12Copy full SHA for 5f11d12
setup.py
@@ -30,8 +30,8 @@ def readFile(filename):
30
theResult = None
31
if filename in ("""README.md""", """LICENSE.md"""):
32
try:
33
- with open(str("""./{}""").format(str(filename))) as f:
34
- theResult = f.read()
+ with open(str("""./{}""").format(str(filename))) as file:
+ theResult = file.read()
35
except Exception:
36
theResult = str(
37
"""See https://github.com/reactive-firewall/python-repo/{}"""
0 commit comments