Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
edulix committed May 1, 2024
1 parent 8073e79 commit 649639b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frestq/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@ class DecoratorBase(object):

def __init__(self, func):
def wrapper_func(*args, **kwargs):
print(f"DecoratorBase: Starting task\n\n")
print(f"DecoratorBase: Starting task")
ret = func(*args, **kwargs)
print(f"DecoratorBase: Finished task\n\n")
print(f"DecoratorBase: Finished task")
return ret
self.func = wrapper_func

Expand Down

0 comments on commit 649639b

Please sign in to comment.