Fix setting CLEARML_API_DEFAULT_REQ_METHOD raises an error

This commit is contained in:
allegroai
2022-12-05 11:18:12 +02:00
parent 18612aac4d
commit 1d5c118b70
2 changed files with 4 additions and 1 deletions

View File

@@ -294,6 +294,9 @@ class Config(object):
)
return value
def put(self, key, value):
self._config.put(key, value)
def to_dict(self):
return self._config.as_plain_ordered_dict()