We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f77f08f commit 874f01dCopy full SHA for 874f01d
src/algokit_subscriber/subscriber.py
@@ -47,7 +47,9 @@ def __init__(
47
)
48
49
def default_error_handler(
50
- self, error: Any, _str: str | None = None # noqa: ANN401
+ self,
51
+ error: Any, # noqa: ANN401
52
+ _str: str | None = None,
53
) -> None:
54
raise error
55
src/algokit_subscriber/transform.py
@@ -154,8 +154,7 @@ def get_parent_offset() -> int:
154
155
156
if (
157
- block_transaction.get("dt") is None
158
- or block_transaction["dt"].get("itx") is None # type: ignore[union-attr]
+ block_transaction.get("dt") is None or block_transaction["dt"].get("itx") is None # type: ignore[union-attr]
159
):
160
continue
161
0 commit comments