Skip to content

Instantly share code, notes, and snippets.

@creiht
Created June 23, 2012 03:16
Show Gist options
  • Save creiht/2976601 to your computer and use it in GitHub Desktop.
Save creiht/2976601 to your computer and use it in GitHub Desktop.
pep8 1.3.1 continuing line issues
# passes
foo = long_function_name(var_one, var_two,
var_three, var_four)
# passes
def long_function_name(
var_one, var_two,
var_three, var_four):
pass
# passes
foo = long_function_name(
var_one, var_two,
var_three, var_four)
@creiht
Copy link
Author

creiht commented Jun 23, 2012

ok I'm dumb... ignore everything in the gist :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment