Skip to content

Commit

Permalink
fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
camfairchild committed Aug 29, 2024
1 parent be1f35f commit b1fb3f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bt_decode.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ class AxonInfo:
placeholder2: int

@staticmethod
def decode(encoded: bytes) -> "PrometheusInfo":
def decode(encoded: bytes) -> "AxonInfo":
pass
@staticmethod
def decode_vec(encoded: bytes) -> List["PrometheusInfo"]:
def decode_vec(encoded: bytes) -> List["AxonInfo"]:
pass

class PrometheusInfo:
Expand Down

0 comments on commit b1fb3f7

Please sign in to comment.