| 54 | pass |
| 55 | |
| 56 | class AstroPrintCloudTemporaryErrorException(AstroPrintCloudException): |
| 57 | #Temporary connection or server issue |
| 58 | def __init__(self, code): |
| 59 | self.code = code |
| 60 | |
| 61 | class HMACAuth(requests.auth.AuthBase): |
| 62 | def __init__(self, publicKey, privateKey, boxId, orgId = None, groupId = None,): |