diff --git a/python-spec/src/somacore/query/types.py b/python-spec/src/somacore/query/types.py index 2b63b22a..ca9d8de6 100644 --- a/python-spec/src/somacore/query/types.py +++ b/python-spec/src/somacore/query/types.py @@ -16,13 +16,7 @@ class IndexLike(Protocol): not as a full specification of the types and behavior of ``get_indexer``. """ - def get_indexer( - self, - target: npt.NDArray[np.int64], - method: object = ..., - limit: object = ..., - tolerance: object = ..., - ) -> Any: + def get_indexer(self, target: npt.NDArray[np.int64]) -> Any: """Something compatible with Pandas' Index.get_indexer method."""