## Problem Using this method returns 404 even though the resource gets created as expected in the Packet Project. **Method:** ```python key = manager.create_ssh_key(label="matt-desktop, public_key="some key") ``` **Error:** ``` packet\baseapi.py", line 92, in call_api raise Error("Error {0}: {1}".format(resp.status_code, msg)) packet.baseapi.Error: Error 404: Not found ``` **Resource actually created:**  The key that is set for this label is the **correct public key** from my key file. Therefore returning `404` makes no sense. This error also stops the rest of the execution for this script... as expected.
Problem
Using this method returns 404 even though the resource gets created as expected in the Packet Project.
Method:
Error:
Resource actually created:

The key that is set for this label is the correct public key from my key file. Therefore returning
404makes no sense.This error also stops the rest of the execution for this script... as expected.