mirror of
https://github.com/clearml/clearml
synced 2025-01-31 09:07:00 +00:00
Fix Task.connect(dict) return value is not dict-compatible
This commit is contained in:
parent
65ffe9d81f
commit
ed51acb2ea
@ -39,6 +39,9 @@ class ProxyDictPostWrite(dict):
|
|||||||
a_dict[k] = i
|
a_dict[k] = i
|
||||||
return a_dict
|
return a_dict
|
||||||
|
|
||||||
|
def to_dict(self):
|
||||||
|
return self._to_dict()
|
||||||
|
|
||||||
def update(self, E=None, **F):
|
def update(self, E=None, **F):
|
||||||
res = self._do_update(E, **F)
|
res = self._do_update(E, **F)
|
||||||
self._set_callback()
|
self._set_callback()
|
||||||
|
Loading…
Reference in New Issue
Block a user