Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion obstore/python/obstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
from ._obstore import ___version

if TYPE_CHECKING:
from . import store
from . import exceptions, store

__version__: str = ___version()
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Note: This should be able to be an `exceptions.pyi` file one level above, however
# pylance isn't able to find that. So this is an exceptions module with only
# `__init__.pyi` to work around pylance's bug.

class ObstoreError(Exception):
"""The base exception class"""

Expand Down