Skip to content

Commit 64a3bc9

Browse files
committed
remove unnecessary comments
1 parent 5588dbb commit 64a3bc9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/data/serialization/labelbox_v1/test_document.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,10 @@
99

1010

1111
def round_dict(data: Dict[str, Any]) -> Dict[str, Any]:
12-
print("hi", data)
1312
for key in data:
14-
print("me key", key)
1513
if isinstance(data[key], float):
16-
print("i am float", key)
1714
data[key] = int(data[key])
1815
elif isinstance(data[key], dict):
19-
print("i am dict", key)
2016
data[key] = round_dict(data[key])
2117
return data
2218

0 commit comments

Comments
 (0)