We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5588dbb commit 64a3bc9Copy full SHA for 64a3bc9
tests/data/serialization/labelbox_v1/test_document.py
@@ -9,14 +9,10 @@
9
10
11
def round_dict(data: Dict[str, Any]) -> Dict[str, Any]:
12
- print("hi", data)
13
for key in data:
14
- print("me key", key)
15
if isinstance(data[key], float):
16
- print("i am float", key)
17
data[key] = int(data[key])
18
elif isinstance(data[key], dict):
19
- print("i am dict", key)
20
data[key] = round_dict(data[key])
21
return data
22
0 commit comments