Skip to content

Commit

Permalink
Fix abstract property
Browse files Browse the repository at this point in the history
Signed-off-by: Mattt Zmuda <[email protected]>
  • Loading branch information
mattt committed Oct 29, 2023
1 parent 48eef1f commit f3aec45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion replicate/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class Collection(abc.ABC, Generic[Model]):
def __init__(self, client: "Client") -> None:
self._client = client

@abc.abstractmethod
@property
@abc.abstractmethod
def model(self) -> Model: # pylint: disable=missing-function-docstring
pass

Expand Down

0 comments on commit f3aec45

Please sign in to comment.