Skip to content

Commit 897c502

Browse files
authored
Revert "initial commit (#104)" (#106)
This reverts commit e2e8819.
1 parent a6d76c8 commit 897c502

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

empack/filter_env.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@ def iterate_pip_pkg_record(env_prefix):
4040
files = csv.reader(record)
4141
all_files = [_file[0] for _file in files]
4242
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-
)
43+
relative_site_packages / _file
44+
for _file in all_files
45+
# Excluding .dist-info files
46+
if ".dist-info" not in _file
4947
]
5048

5149
yield dict(

0 commit comments

Comments
 (0)