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
It would be great if I could get service name by its code with something like this:
def get_service_name(service_code):
"""
Given a service code, return the human-readable name for
that service
@return: string on success or False
"""
return SHIPPING_SERVICES_NAMES.get(service_code, service_code)