Skip to content

Commit c7f2a43

Browse files
authored
fix export_id for existing datasets (#19)
1 parent 51b37a0 commit c7f2a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tracely/src/tracely/_tracer_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def _create_tracer_provider(
131131
)
132132

133133
_export_id = resp.json()["dataset_id"]
134-
_data_context.export_id = uuid.UUID(_export_id)
134+
_data_context.export_id = uuid.UUID(_export_id)
135135
_data_context.project_id = uuid.UUID(_project_id)
136136
else:
137137
_data_context.export_id = "<not_set>"

0 commit comments

Comments
 (0)