Skip to content

Commit

Permalink
fix get_origin import
Browse files Browse the repository at this point in the history
  • Loading branch information
benpankow committed Jan 20, 2023
1 parent 80099ee commit a95f683
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions python_modules/dagster/dagster/_config/structured_config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import inspect
from typing import Generic, Mapping, TypeVar, Union, get_origin
from typing import Generic, Mapping, TypeVar, Union

from typing_extensions import TypeAlias, dataclass_transform, get_args
from typing_extensions import TypeAlias, dataclass_transform, get_args, get_origin

from dagster._config.config_type import ConfigType
from dagster._config.source import BoolSource, IntSource, StringSource
Expand Down Expand Up @@ -31,10 +31,7 @@ class cached_property: # type: ignore[no-redef]
convert_potential_field,
)
from dagster._core.definitions.resource_definition import ResourceDefinition, ResourceFunction
from dagster._core.storage.io_manager import (
IOManager,
IOManagerDefinition,
)
from dagster._core.storage.io_manager import IOManager, IOManagerDefinition

Self = Any

Expand Down

0 comments on commit a95f683

Please sign in to comment.