Skip to content

Commit f3aec45

Browse files
committed
Fix abstract property
Signed-off-by: Mattt Zmuda <[email protected]>
1 parent 48eef1f commit f3aec45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

replicate/collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class Collection(abc.ABC, Generic[Model]):
1818
def __init__(self, client: "Client") -> None:
1919
self._client = client
2020

21-
@abc.abstractmethod
2221
@property
22+
@abc.abstractmethod
2323
def model(self) -> Model: # pylint: disable=missing-function-docstring
2424
pass
2525

0 commit comments

Comments
 (0)