Fixes for two type hinting issues

This commit is contained in:
David Kyle 2023-01-04 15:53:09 +00:00 committed by GitHub
parent 211cc2c83f
commit c55516f376
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@ class ArithmeticObject(ABC):
def value(self) -> str:
pass
@property
@abstractmethod
def dtype(self) -> "DTypeLike":
pass

View File

@ -345,5 +345,5 @@ def es_version(es_client: Elasticsearch) -> Tuple[int, int, int]:
)
else:
eland_es_version = es_client._eland_es_version # type: ignore
eland_es_version = es_client._eland_es_version
return eland_es_version