Last active
March 2, 2022 16:54
-
-
Save hvuhsg/053f0d744d9adcbb625280630130bb72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cache = None | |
def get_file(): | |
if cache is None: | |
cache = load_file_from_url() | |
return cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment