Skip to content

Instantly share code, notes, and snippets.

@jamilnoyda
Last active September 2, 2020 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamilnoyda/10e37ce33f1d9c40d161860fd7d4acfa to your computer and use it in GitHub Desktop.
Save jamilnoyda/10e37ce33f1d9c40d161860fd7d4acfa to your computer and use it in GitHub Desktop.
#bad
def create_from_partner_onboarding( created_by, pipeline_id, pipeline_type, doc_id, doc_name, count=1):
pass
def create_from_partner_onboarding(
created_by, pipeline_id, pipeline_type, doc_id, doc_name, count=1
):
"""
good one
"""
pass
#good one
def create_from_partner_onboarding(
created_by=1,
pipeline_id=2,
pipeline_type,
doc_id,
doc_name,
count=1
):
pass
# or you can create dict and access the values
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment