linkedin-developers / linkedin-api-python-client

Official Python client library for LinkedIn APIs
Other
175 stars 35 forks source link

Do not use double underscore prefixes in function names #29

Open nbro10 opened 1 year ago

nbro10 commented 1 year ago

In Python, to indicate that a function is private, we just need one prefix underscore, e.g. _my_private_function. Double underscore prefixes have a special meaning and maybe should be avoided if one just need to indicate that a function is private. See https://peps.python.org/pep-0008/#descriptive-naming-styles for more info.