-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7df4e2
commit 8460083
Showing
22 changed files
with
22 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from collections.abc import Iterable | ||
|
||
from dipdup.context import HandlerContext | ||
from dipdup.index import MatchedHandler | ||
|
||
|
||
async def batch( | ||
ctx: HandlerContext, | ||
handlers: Iterable[MatchedHandler], | ||
handlers: tuple[MatchedHandler, ...], | ||
) -> None: | ||
for handler in handlers: | ||
await ctx.fire_matched_handler(handler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters