Skip to content

Instantly share code, notes, and snippets.

@cemoody
Created September 15, 2022 14:26
Show Gist options
  • Save cemoody/0fb3601c0800320e4246f81eace91aa3 to your computer and use it in GitHub Desktop.
Save cemoody/0fb3601c0800320e4246f81eace91aa3 to your computer and use it in GitHub Desktop.
def switch_modal_function(stub=None, use_modal=True, **kwargs):
def wrapper(inner_func):
if use_modal:
assert stub is not None, "If using modal, please provide `stub`."
return stub.function(**kwargs)(inner_func)
else:
return inner_func
return wrapper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment