Skip to content

Commit

Permalink
cont fixing import
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarros committed Oct 14, 2024
1 parent 6f52d00 commit 3eabb10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion backend/infrahub/workflows/models.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import importlib
from typing import Any, Awaitable, Callable, Self, TypeVar
from typing import Any, Awaitable, Callable, TypeVar
from uuid import UUID

from prefect.client.orchestration import PrefectClient
from prefect.client.schemas.actions import DeploymentScheduleCreate
from prefect.client.schemas.objects import FlowRun
from prefect.client.schemas.schedules import CronSchedule
from pydantic import BaseModel
from typing_extensions import Self

from infrahub import __version__

Expand Down
3 changes: 2 additions & 1 deletion backend/tests/unit/git/test_git_rpc.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from __future__ import annotations

from typing import TYPE_CHECKING, Any, Optional, Self
from typing import TYPE_CHECKING, Any, Optional
from unittest.mock import AsyncMock, patch

from infrahub_sdk import UUIDT, Config, InfrahubClient
from typing_extensions import Self

from infrahub.core.constants import InfrahubKind, RepositoryInternalStatus
from infrahub.exceptions import RepositoryError
Expand Down

0 comments on commit 3eabb10

Please sign in to comment.