Skip to content

Commit 07dcabd

Browse files
authored
Merge pull request #36 from transformerlab/fix/exp-id-type
change type of experiment id to str from int
2 parents fa43d4f + bd882b2 commit 07dcabd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "transformerlab"
7-
version = "0.0.26"
7+
version = "0.0.27"
88
description = "Python SDK for Transformer Lab"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/lab/task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _default_json(self):
3131
def set_metadata(self, *, name: str | None = None, type: str | None = None,
3232
inputs: dict | None = None, config: dict | None = None,
3333
plugin: str | None = None, outputs: dict | None = None,
34-
experiment_id: int | None = None, remote_task: bool | None = None):
34+
experiment_id: str | None = None, remote_task: bool | None = None):
3535
"""Set task metadata"""
3636
data = self.get_json_data()
3737
if name is not None:

0 commit comments

Comments
 (0)