Skip to content
Merged
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
- '--fix'
- id: ruff-format
- repo: 'https://github.com/pre-commit/mirrors-mypy'
rev: v1.20.2
rev: v2.0.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion proxystore_ex/connectors/dim/margo.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ class MargoServer:
"""MargoServer implementation."""

def __init__(self, engine: Engine) -> None:
self.data: dict[str, bytes] = {}
self.data: dict[str, BytesLike] = {}
self.engine = engine

def evict(
Expand Down
2 changes: 1 addition & 1 deletion testing/mocked/pymargo.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
server = 'server'

# server dictionary
data_dict: dict[str, bytes] = {}
data_dict: dict[str, bytes | bytearray] = {}


class MargoException(Exception): # pragma: no cover # noqa: N818
Expand Down