Skip to content

Commit

Permalink
move back type hint imports
Browse files Browse the repository at this point in the history
  • Loading branch information
fritz-astronomer committed Jun 7, 2024
1 parent 1da202c commit 61b6836
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion astronomer_starship/starship_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
get_kwargs_fn,
)

from typing import Any, Dict, List, Union
from typing import TYPE_CHECKING

if TYPE_CHECKING:
from typing import Callable, Any, Dict, List, Union
from typing import Callable


def get_json_or_clean_str(o: str) -> Union[List[Any], Dict[Any, Any], Any]:
Expand Down

0 comments on commit 61b6836

Please sign in to comment.