From 4f8a156279406c1c549dbdaba79ddf017f927f00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix-Antoine=20Fortin?= Date: Thu, 4 May 2023 09:54:23 -0400 Subject: [PATCH] Fix issue #63 --- lmod/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lmod/__init__.py b/lmod/__init__.py index 1d1cbaa..2aad5c1 100644 --- a/lmod/__init__.py +++ b/lmod/__init__.py @@ -198,7 +198,7 @@ async def unuse(self, *paths): def print_output_decorator(function): @wraps(function) - def wrapper(*args, **kargs): + async def wrapper(*args, **kargs): output = function(*args, **kargs) if output is not None: print(output)