Skip to content

Commit e9e626f

Browse files
committed
[NO TESTS] WIP
1 parent 500643a commit e9e626f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

py/tests/py_venv_conflict/test_import_roots.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ def tree(dir_path: Path, prefix: str=''):
2525
# i.e. space because last, └── , above so no more |
2626
yield from tree(path, prefix=prefix+extension)
2727

28-
for line in tree(Path(".")):
28+
here = Path(".")
29+
print(here.absolute())
30+
for line in tree(here):
2931
print(line)
3032

3133
print("---")

0 commit comments

Comments
 (0)