Skip to content

Commit

Permalink
Comment out some prints
Browse files Browse the repository at this point in the history
  • Loading branch information
alhom committed Sep 19, 2024
1 parent 485eaeb commit 4d992f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyVlsv/vlsvreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1732,9 +1732,9 @@ def read_variable(self, name, cellids=-1,operator="pass",sorted=False):
# print(inspect.stack())
stck = inspect.stack()
# print(stck[1])
for i,fr in enumerate(stck):
mod = inspect.getmodule(fr[0])
print('frame '+str(i)+" module: "+ str(mod))
# for i,fr in enumerate(stck):
# mod = inspect.getmodule(fr[0])
# print('frame '+str(i)+" module: "+ str(mod))


if(inspect.getmodule(stck[1][0]) is None or (inspect.getmodule(stck[1][0]) is not None and inspect.getmodule(stck[1][0]).__name__ != 'main')):
Expand Down

0 comments on commit 4d992f8

Please sign in to comment.