Skip to content

Instantly share code, notes, and snippets.

@igeligel
Created June 2, 2018 15:45
Show Gist options
  • Save igeligel/153463dfa8604f1c37edc1a5b44df389 to your computer and use it in GitHub Desktop.
Save igeligel/153463dfa8604f1c37edc1a5b44df389 to your computer and use it in GitHub Desktop.
function with a lot of parameters
def function_with_really_long_name(
normal_variable,
another_normal_variable,
configuration=None,
test_number=1,
test_text='dwadawa',
test_tuple=(
'LoremIpsum',
21)):
return None
def function_with_really_long_name(normal_variable, another_normal_variable, configuration=None, test_number=1, test_text='dwadawa', test_tuple=('LoremIpsum', 21)):
return None
def function_with_really_long_name(
normal_variable,
another_normal_variable,
configuration=None,
test_number=1,
test_text="dwadawa",
test_tuple=("LoremIpsum", 21),
):
return None
def function_with_really_long_name(
normal_variable,
another_normal_variable,
configuration=None,
test_number=1,
test_text='dwadawa',
test_tuple=('LoremIpsum', 21)
):
return None
def function_with_really_long_name(normal_variable,
another_normal_variable,
configuration=None,
test_number=1,
test_text='dwadawa',
test_tuple=('LoremIpsum', 21)):
return None
def function_with_really_long_name(normal_variable,
another_normal_variable,
configuration=None,
test_number=1,
test_text='dwadawa',
test_tuple=('LoremIpsum', 21)):
return None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment