Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ jobs:
- name: Install client
run: pip install *.whl

- run: pip install mypy
- run: pip install mypy==1.18.1

- run: stubtest aerospike --allowlist stubtest-allowlist

Expand Down
6 changes: 3 additions & 3 deletions aerospike-stubs/aerospike.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,11 @@ TXN_STATE_ABORTED: Literal[3]

@final
class CDTInfinite:
def __init__(self, *args, **kwargs) -> None: ...
def __init__(self) -> None: ...

@final
class CDTWildcard:
def __init__(self, *args, **kwargs) -> None: ...
def __init__(self) -> None: ...

@final
class Transaction:
Expand Down Expand Up @@ -459,7 +459,7 @@ class Scan:

@final
class null:
def __init__(self, *args, **kwargs) -> None: ...
def __init__(self) -> None: ...

def calc_digest(ns: str, set: str, key: Union[str, int, bytearray]) -> bytearray: ...
def client(config: dict) -> Client: ...
Expand Down
Loading