Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rjfarmer committed Oct 16, 2023
1 parent a7f592b commit 5074f3d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gfort2py/fProc.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ def name(self):
def __call__(self, *args, **kwargs):
self._func_args = self._convert_args(*args, **kwargs)

# print(self._func_args)

with _captureStdOut() as cs:
if self._func_args is not None:
res = self._func(*self._func_args)
Expand Down

0 comments on commit 5074f3d

Please sign in to comment.