Skip to content

Commit

Permalink
Do not expose embed decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
druzsan committed Dec 4, 2023
1 parent 9219e01 commit 6c679a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions renumics/spotlight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,14 @@
from .plugin_loader import load_plugins
from .settings import settings
from .analysis.typing import DataIssue
from .embeddings.decorator import embed # noqa: F401
from . import cache, logging

if not settings.verbose:
logging.disable()

__plugins__ = load_plugins()

__all__ = ["show", "close", "viewers", "Viewer", "clear_caches", "DataIssue", "embed"]
__all__ = ["show", "close", "viewers", "Viewer", "clear_caches", "DataIssue"]


def clear_caches() -> None:
Expand Down

0 comments on commit 6c679a7

Please sign in to comment.