Skip to content

Commit

Permalink
show more info
Browse files Browse the repository at this point in the history
  • Loading branch information
hiaselhans committed Nov 26, 2023
1 parent 98ef5b8 commit c779085
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion stubs.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
import multiprocessing

print(sys.executable)
print(sys.path)

for dir in sys.path:
print(dir)
for subdir in os.listdir(dir):
print(f" {subdir}")

import mypy.stubgen

Expand Down

0 comments on commit c779085

Please sign in to comment.