Skip to content

Commit

Permalink
fix: python 3.8 type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Nov 6, 2023
1 parent e376a45 commit 30778a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kiara/utils/develop/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
from enum import Enum
from typing import Any, ClassVar, Dict, Type, Union
from typing import Any, ClassVar, Dict, Tuple, Type, Union

from pydantic import BaseModel, ConfigDict, Field
from pydantic_settings import (
Expand Down Expand Up @@ -226,7 +226,7 @@ def settings_customise_sources(
env_settings: PydanticBaseSettingsSource,
dotenv_settings: PydanticBaseSettingsSource,
file_secret_settings: PydanticBaseSettingsSource,
) -> tuple[PydanticBaseSettingsSource, ...]:
) -> Tuple[PydanticBaseSettingsSource, ...]:
return (
init_settings,
env_settings,
Expand Down

0 comments on commit 30778a3

Please sign in to comment.