Skip to content

Commit

Permalink
Fix #63 for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed May 5, 2023
1 parent 1d34e51 commit 28efce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmod/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ async def unuse(self, *paths):
def print_output_decorator(function):
@wraps(function)
async def wrapper(*args, **kargs):
output = function(*args, **kargs)
output = await function(*args, **kargs)
if output is not None:
print(output)
return wrapper
Expand Down

0 comments on commit 28efce5

Please sign in to comment.