*** Variables ***
${base_url} https://api.github.com/
Search users with the following request parameters
    create session  Get_Repositories     ${base_url}             
    ${response_users} =    get request     Get_Repositories       /users
    #log to console     ${response_users.content}
    ${json_users} =        evaluate    json.loads('''${response_users.content}''')    json 
    ${Sorted_Users} =     Sort List         ${json_users}
    log to console        ${Sorted_Users}
I am receiving the error; TypeError: '<' not supported between instances of 'dict' and 'dict'
 
    