We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b7648 commit da77322Copy full SHA for da77322
python/hopsworks/secret.py
@@ -48,6 +48,7 @@ def __init__(
48
@classmethod
49
def from_response_json(cls, json_dict):
50
json_decamelized = humps.decamelize(json_dict)
51
+ print(json_decamelized)
52
if len(json_decamelized["items"]) == 0:
53
return []
54
return [cls(**secret) for secret in json_decamelized["items"]]
0 commit comments