Skip to content

Commit bad6cf7

Browse files
committed
use black and ruff
1 parent 4c289ec commit bad6cf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ class BaseAppSettings(
3030
APP_VERSION: str = "1.0.0"
3131
APP_DESCRIPTION: str = "An e-commerce marketplace API built with FastAPI."
3232
API_V1_PREFIX: str = "/api/v1"
33-
SERVER_HOST: str = "0.0.0.0"
34-
SERVER_PORT: int = 8000
33+
SERVER_HOST: str = "0.0.0.0" # nosec B104
34+
SERVER_PORT: int = 8000 # nosec B104
3535
RELOAD: bool = True
3636
LOG_LEVEL: str = "INFO"
3737

0 commit comments

Comments
 (0)