Skip to content

Commit b94722a

Browse files
authored
Merge pull request #1 from skytable/fix/python3.8/type_hints
query: Fix type hints to ensure compatibility with Python 3.8
2 parents 4fe9e41 + a3e25b2 commit b94722a

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.1.3
4+
5+
Fixed issues with type hints when using Python 3.8.
6+
37
## 0.1.2
48

59
Support negative floating point values in responses.

src/skytable_py/query.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# limitations under the License.
1515

1616
from abc import ABC
17+
from typing import Tuple
1718
# internal
1819
from .exception import ClientException
1920

@@ -36,7 +37,7 @@ def get_param_count(self) -> int:
3637

3738

3839
class SkyhashParameter(ABC):
39-
def encode_self(self) -> tuple[bytes, int]: pass
40+
def encode_self(self) -> Tuple[bytes, int]: pass
4041

4142

4243
class UInt(SkyhashParameter):
@@ -45,19 +46,19 @@ def __init__(self, v: int) -> None:
4546
raise ClientException("unsigned int can't be negative")
4647
self.v = v
4748

48-
def encode_self(self) -> tuple[bytes, int]:
49+
def encode_self(self) -> Tuple[bytes, int]:
4950
return (f"\x02{self.v}\n".encode(), 1)
5051

5152

5253
class SInt(SkyhashParameter):
5354
def __init__(self, v: int) -> None:
5455
self.v = v
5556

56-
def encode_self(self) -> tuple[bytes, int]:
57+
def encode_self(self) -> Tuple[bytes, int]:
5758
return (f"\x03{self.v}\n".encode(), 1)
5859

5960

60-
def encode_parameter(parameter: any) -> tuple[bytes, int]:
61+
def encode_parameter(parameter: any) -> Tuple[bytes, int]:
6162
encoded = None
6263
if isinstance(parameter, SkyhashParameter):
6364
return parameter.encode_self()

0 commit comments

Comments
 (0)