8000 feat(async): roll back sync cli wrapper · python-gitlab/python-gitlab@55f8439 · GitHub
[go: up one dir, main page]

Skip to content

Commit 55f8439

Browse files
committed
feat(async): roll back sync cli wrapper
1 parent 0591787 commit 55f8439

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitlab/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
def register_custom_action(cls_names, mandatory=tuple(), optional=tuple()):
4040
def wrap(f):
4141
@functools.wraps(f)
42-
async def wrapped_f(*args, **kwargs):
43-
return await f(*args, **kwargs)
42+
def wrapped_f(*args, **kwargs):
43+
return f(*args, **kwargs)
4444

4545
# in_obj defines whether the method belongs to the obj or the manager
4646
in_obj = True

0 commit comments

Comments
 (0)
0