Skip to content

Instantly share code, notes, and snippets.

@schworer
Created August 11, 2010 16:28
Show Gist options
  • Save schworer/519261 to your computer and use it in GitHub Desktop.
Save schworer/519261 to your computer and use it in GitHub Desktop.
# this is non-pep8 python
def badFunc(foo = True):
foo = False; return foo
# this is pep8 python
def bad_func(foo=True):
foo = False
return foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment