Skip to content

Commit a60154c

Browse files
committed
Fix flake8 issues
1 parent cd6f532 commit a60154c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pip_check_reqs/find_extra_reqs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def find_extra_reqs(options):
2525
package['location'])
2626
for package_file in package.get('files', []) or []:
2727
path = os.path.realpath(
28-
os.path.join(package['location'],package_file),
28+
os.path.join(package['location'], package_file),
2929
)
3030
installed_files[path] = package['name']
3131
package_path = common.is_package_file(path)

pip_check_reqs/find_missing_reqs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def find_missing_reqs(options):
2828
package['location'])
2929
for package_file in package.get('files', []) or []:
3030
path = os.path.realpath(
31-
os.path.join(package['location'],package_file),
31+
os.path.join(package['location'], package_file),
3232
)
3333
installed_files[path] = package['name']
3434
package_path = common.is_package_file(path)

0 commit comments

Comments
 (0)