Skip to content

Commit

Permalink
iter
Browse files Browse the repository at this point in the history
  • Loading branch information
glemaitre committed Jan 25, 2025
1 parent 15e0b21 commit f7ecb17
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions skore/src/skore/project/_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ def _load(project_name: Union[str, Path]) -> Project:
Project
The loaded Project instance.
"""
from skore import console # avoid circular import

path = Path(project_name).resolve()

if path.suffix != ".skore":
Expand Down Expand Up @@ -65,9 +63,5 @@ def _load(project_name: Union[str, Path]) -> Project:
server_info = ServerInfo.rejoin(project)
if server_info is not None:
project._server_info = server_info
console.print(
f"Project '{project.name}' rejoined skore UI at URL: "
f"http://localhost:{server_info.port}"
)

return project

0 comments on commit f7ecb17

Please sign in to comment.