Skip to content

Commit

Permalink
address typing nits (#16495)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzstoatzz authored Dec 24, 2024
1 parent 4b08d0d commit c7282e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions flows/load_flows_concurrently.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import asyncio
from typing import Any

from prefect import Flow
from prefect.runner.storage import GitRepository


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

0 comments on commit c7282e8

Please sign in to comment.