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 a6d76c8 commit 897c502Copy full SHA for 897c502
empack/filter_env.py
@@ -40,12 +40,10 @@ def iterate_pip_pkg_record(env_prefix):
40
files = csv.reader(record)
41
all_files = [_file[0] for _file in files]
42
all_files_paths = [
43
- str(
44
- relative_site_packages / _file
45
- for _file in all_files
46
- # Excluding .dist-info files
47
- if ".dist-info" not in _file
48
- )
+ relative_site_packages / _file
+ for _file in all_files
+ # Excluding .dist-info files
+ if ".dist-info" not in _file
49
]
50
51
yield dict(
0 commit comments