Skip to content

Commit

Permalink
use the right enum
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Nov 19, 2024
1 parent af0dfb5 commit fa43716
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/settings-library/src/settings_library/application.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from models_library.basic_types import BootModeEnum
from pydantic import Field, PositiveInt

from .base import BaseCustomSettings
from .basic_types import BootMode, BuildTargetEnum
from .basic_types import BuildTargetEnum


class BaseApplicationSettings(BaseCustomSettings):
Expand All @@ -16,7 +17,7 @@ class BaseApplicationSettings(BaseCustomSettings):
SC_VCS_URL: str | None = None

# @Dockerfile
SC_BOOT_MODE: BootMode | None = None
SC_BOOT_MODE: BootModeEnum | None = None
SC_BOOT_TARGET: BuildTargetEnum | None = None
SC_HEALTHCHECK_TIMEOUT: PositiveInt | None = Field(
default=None,
Expand Down

0 comments on commit fa43716

Please sign in to comment.