We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b820945 commit b525d1cCopy full SHA for b525d1c
graphdatascience/procedure_surface/api/similarity/knn_endpoints.py
@@ -1,6 +1,6 @@
1
from __future__ import annotations
2
3
-from abc import ABC, abstractmethod, abstractproperty
+from abc import ABC, abstractmethod
4
from typing import Any
5
6
from pandas import DataFrame
@@ -16,7 +16,8 @@
16
17
18
class KnnEndpoints(ABC):
19
- @abstractproperty
+ @property
20
+ @abstractmethod
21
def filtered(self) -> KnnFilteredEndpoints:
22
pass
23
0 commit comments