We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
none
1 parent 5a0647d commit a5ce7b5Copy full SHA for a5ce7b5
warehouse/oso_dagster/utils/dlt.py
@@ -83,7 +83,9 @@ async def _wrapper(
83
log = context.log if context else logger
84
85
tasks: List[Coroutine[Any, Any, R]] = [
86
- task() for task in fn(*args, **kwargs)
+ coro
87
+ for coro in (task() for task in fn(*args, **kwargs))
88
+ if coro is not None
89
]
90
batches_list = list(batched(tasks, config.chunk_size))
91
0 commit comments