Skip to content

Commit

Permalink
Fix a typo in decorator pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Bach committed Dec 3, 2019
1 parent 3c38e10 commit 4437ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kalite/shared/decorators/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def blank_wrapper(fn):
if settings.CENTRAL_SERVER:
return blank_wrapper

return lambda *a,**kw: decorator(*a **kw)
return lambda *a,**kw: decorator(*a, **kw)


def get_user_from_request(handler=None, request=None, *args, **kwargs):
Expand Down

0 comments on commit 4437ff0

Please sign in to comment.