Last active
September 24, 2015 21:08
-
-
Save dharmab/c1e36c64803f279f4530 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env python | |
def should_update(): | |
""" | |
:return: True if the update is required in your environment. False otherwise. | |
""" | |
return True | |
if __name__ == "__main__": | |
if should_update(): | |
print("update required") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment