Skip to content

Commit d26b9b7

Browse files
committed
chore: add docstring to HasCurrentCatalog and HasCurrentDatabase
1 parent d2d018f commit d26b9b7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ibis/backends/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,8 @@ def to_json(
618618

619619

620620
class HasCurrentCatalog(abc.ABC):
621+
"""Has a `current_catalog` property."""
622+
621623
@property
622624
@abc.abstractmethod
623625
def current_catalog(self) -> str:
@@ -641,6 +643,8 @@ def current_catalog(self) -> str:
641643

642644

643645
class HasCurrentDatabase(abc.ABC):
646+
"""Has a `current_database` property."""
647+
644648
@property
645649
@abc.abstractmethod
646650
def current_database(self) -> str:

0 commit comments

Comments
 (0)