We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b08d0d commit c7282e8Copy full SHA for c7282e8
flows/load_flows_concurrently.py
@@ -1,11 +1,12 @@
1
import asyncio
2
+from typing import Any
3
4
from prefect import Flow
5
from prefect.runner.storage import GitRepository
6
7
-async def load_flow(entrypoint: str) -> Flow[..., object]:
8
- return await Flow.from_source( # type: ignore
+async def load_flow(entrypoint: str) -> Flow[..., Any]:
9
+ return await Flow.from_source( # type: ignore # sync_compatible causes issues
10
source=GitRepository(
11
url="https://github.com/PrefectHQ/examples.git",
12
),
0 commit comments