mirror of
https://github.com/microsoft/fara.git
synced 2026-08-21 17:50:45 +08:00
12 lines
229 B
Python
12 lines
229 B
Python
class Workspace:
|
|
def renew_mlflow_token(self):
|
|
...
|
|
|
|
def start_run(self, _):
|
|
return self
|
|
|
|
def __enter__(self):
|
|
return self
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
... |