You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add respective functions in api.py file into APIClass, with a meaningful and single-naming convention:
if a function is generic (takes only querystring parameter), no need for _by_param ---> i.e.: get_fixtures(querystring={"fixture": "2156"})
if a function is not generic and returns based on some parameters, then with _by_param ----> get_fixtures_by_fixture_id(fixture_id)
Add respective functions in api.py file into APIClass, with a meaningful and single-naming convention:
if a function is generic (takes only querystring parameter), no need for _by_param ---> i.e.:
get_fixtures(querystring={"fixture": "2156"})
if a function is not generic and returns based on some parameters, then with _by_param ---->
get_fixtures_by_fixture_id(fixture_id)
The text was updated successfully, but these errors were encountered: