/ src / evidently / legacy / ui / remote.py
remote.py
 1  """For backward compatibility with evidently <= 4.9"""
 2  
 3  import warnings
 4  
 5  from evidently.legacy.ui.workspace import RemoteWorkspace
 6  
 7  __all__ = ["RemoteWorkspace"]
 8  
 9  warnings.warn(
10      "Importing RemoteWorkspace from evidently.legacy.ui.remote is deprecated. Please import from evidently.legacy.ui.workspace",
11      DeprecationWarning,
12  )