Skip to content

Instantly share code, notes, and snippets.

@lpenguin
Last active November 22, 2015 20:27
Show Gist options
  • Save lpenguin/8b2a60de192a40801f8e to your computer and use it in GitHub Desktop.
Save lpenguin/8b2a60de192a40801f8e to your computer and use it in GitHub Desktop.
check.py
def checknotnull(item, notnullfields):
if not all(f in item for f in notnullfields):
raise Exception(item)
return item
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment