Created
June 2, 2018 15:45
-
-
Save igeligel/153463dfa8604f1c37edc1a5b44df389 to your computer and use it in GitHub Desktop.
function with a lot of parameters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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