Skip to content

Commit

Permalink
fix mypy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMelt committed May 2, 2024
1 parent 3c1c88a commit 55f545d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mdb/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# details.

from abc import ABC, abstractmethod
from typing import List, Type


class DebugBackend(ABC):
Expand Down Expand Up @@ -78,4 +79,4 @@ def float_regex(self) -> str:
return r"\d+ = ([+-]?(\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?)"


backends = [LLDBBackend, GDBBackend]
backends: List[Type[DebugBackend]] = [LLDBBackend, GDBBackend]
1 change: 1 addition & 0 deletions mdb/mdb_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"ranks": int,
"select": str,
"target": str,
"connection_attempts": int,
},
)

Expand Down

0 comments on commit 55f545d

Please sign in to comment.