Skip to content

Commit bcacf4c

Browse files
committed
Formatting
1 parent b8c079f commit bcacf4c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
from setuptools import setup, find_packages
2323

2424
# Load package.json contents
25-
with open("package.json") as data:
26-
package = json.load(data)
25+
with open("package.json") as f:
26+
package = json.load(f)
2727

2828
# Load list of dependencies
29-
with open("requirements.txt") as data:
29+
with open("requirements.txt") as f:
3030
install_requires = [
31-
line for line in data.read().split("\n")
31+
line for line in f.read().split("\n")
3232
if line and not line.startswith("#")
3333
]
3434

3535
# Load README contents
36-
with open("README.md", encoding = "utf-8") as data:
37-
long_description = data.read()
36+
with open("README.md", encoding = "utf-8") as f:
37+
long_description = f.read()
3838

3939
# Package description
4040
setup(

0 commit comments

Comments
 (0)