Skip to content

Commit

Permalink
PTFE-673: logging runner manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Abubakarr99 committed Aug 7, 2023
1 parent 4ee5cee commit b0ef4d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions runner_manager/models/settings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from enum import Enum
from pathlib import Path
from typing import Any, Dict, Optional
from enum import Enum

import yaml
from pydantic import AnyHttpUrl, BaseSettings, RedisDsn

Expand All @@ -22,8 +23,8 @@ def yaml_config_settings_source(settings: BaseSettings) -> Dict[str, Any]:


class LogLevel(str, Enum):
INFO = 'INFO'
WARNING = 'WARNING'
INFO = "INFO"
WARNING = "WARNING"


class Settings(BaseSettings):
Expand Down

0 comments on commit b0ef4d1

Please sign in to comment.