Skip to content

Commit

Permalink
chore: add Session to top-level imports (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
axiomofjoy authored Mar 27, 2023
1 parent 096e9b2 commit 844c56b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/phoenix/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .datasets import Dataset, EmbeddingColumnNames, Schema, load_example, ExampleDatasets
from .session.session import active_session, close_app, launch_app
from .session import active_session, close_app, launch_app, Session

# module level doc-string
__doc__ = """
Expand Down
3 changes: 3 additions & 0 deletions src/phoenix/session/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .session import active_session, close_app, launch_app, Session

__all__ = ["active_session", "close_app", "launch_app", "Session"]

0 comments on commit 844c56b

Please sign in to comment.