Last active
September 2, 2020 13:24
-
-
Save jamilnoyda/10e37ce33f1d9c40d161860fd7d4acfa to your computer and use it in GitHub Desktop.
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
#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