Skip to content

Commit e5cda76

Browse files
committed
Remove "r" arg from open statement
1 parent e019801 commit e5cda76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
VERSION = "0.0.1"
44

5-
with open("README.md", "r") as readme_file:
5+
with open("README.md") as readme_file:
66
readme = readme_file.read()
77

8-
with open("requirements.txt", "r") as requirements_file:
8+
with open("requirements.txt") as requirements_file:
99
install_requires = [line.strip() for line in requirements_file]
1010

11-
with open("LICENSE", "r") as license_file:
11+
with open("LICENSE") as license_file:
1212
license_txt = license_file.read()
1313

1414
setup_args = dict(

0 commit comments

Comments
 (0)