Skip to content

Commit

Permalink
feat: add netpyne reproducer
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Nov 2, 2023
1 parent 5ed2997 commit 2baf027
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions example/example_dir/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@


from netpyne import specs
from netpyne import sim
from netpyne import __version__ as version

import sys
import pkg_resources

Expand All @@ -21,6 +24,10 @@
for i in dists:
print(i, file=f)

for k in sys.modules.keys():
if "matplotlib" in k:
print(f"matplotlib still loaded: {k}")

print(f"Args are: {sys.argv}")
if sys.argv.count("-nogui") > 0:
print("nogui found")
Expand Down

0 comments on commit 2baf027

Please sign in to comment.