Skip to content

Commit b1fb3f7

Browse files
committed
fix type hint
1 parent be1f35f commit b1fb3f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bt_decode.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ class AxonInfo:
1919
placeholder2: int
2020

2121
@staticmethod
22-
def decode(encoded: bytes) -> "PrometheusInfo":
22+
def decode(encoded: bytes) -> "AxonInfo":
2323
pass
2424
@staticmethod
25-
def decode_vec(encoded: bytes) -> List["PrometheusInfo"]:
25+
def decode_vec(encoded: bytes) -> List["AxonInfo"]:
2626
pass
2727

2828
class PrometheusInfo:

0 commit comments

Comments
 (0)