Skip to content

Instantly share code, notes, and snippets.

@dharmab
Last active September 24, 2015 21:08
Show Gist options
  • Save dharmab/c1e36c64803f279f4530 to your computer and use it in GitHub Desktop.
Save dharmab/c1e36c64803f279f4530 to your computer and use it in GitHub Desktop.
#!/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