Skip to content

Instantly share code, notes, and snippets.

@thisfred
Created July 8, 2016 00:06
Show Gist options
  • Save thisfred/534cea1b8141534bd85b45bbd473fd3e to your computer and use it in GitHub Desktop.
Save thisfred/534cea1b8141534bd85b45bbd473fd3e to your computer and use it in GitHub Desktop.
"""Module to demonstrate an error."""
def main():
"""Function to demonstrate an error."""
val = False
if val:
first = 42
for _ in []:
second = 42
print first, second
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment