Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created March 27, 2022 16:35
Show Gist options
  • Save fatosmorina/1a5f4438ccd5fd57b6af3d60720e45dc to your computer and use it in GitHub Desktop.
Save fatosmorina/1a5f4438ccd5fd57b6af3d60720e45dc to your computer and use it in GitHub Desktop.
def get_user():
pass
def redirect_to_sign_in_page():
pass
def filter(is_authenticated: bool):
if is_authenticated:
get_user()
else:
redirect_to_sign_in_page()
filter(is_authenticated=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment