|
def make_get_request(session, endpoint, params_data): |
This line is incorrect since this will lead an error when using functions like
get_self_user_id, the only thing that is needed to add is:
def make_get_request(session, endpoint, params_data=None):
This will fix the issue.
freelancer-sdk-python/freelancersdk/resources/users/helpers.py
Line 21 in c313389
This line is incorrect since this will lead an error when using functions like
get_self_user_id, the only thing that is needed to add is:def make_get_request(session, endpoint, params_data=None):This will fix the issue.