Skip to content

Commit c7282e8

Browse files
authored
address typing nits (#16495)
1 parent 4b08d0d commit c7282e8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

flows/load_flows_concurrently.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import asyncio
2+
from typing import Any
23

34
from prefect import Flow
45
from prefect.runner.storage import GitRepository
56

67

7-
async def load_flow(entrypoint: str) -> Flow[..., object]:
8-
return await Flow.from_source( # type: ignore
8+
async def load_flow(entrypoint: str) -> Flow[..., Any]:
9+
return await Flow.from_source( # type: ignore # sync_compatible causes issues
910
source=GitRepository(
1011
url="https://github.com/PrefectHQ/examples.git",
1112
),

0 commit comments

Comments
 (0)