We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea2020 commit c77acfbCopy full SHA for c77acfb
pyobas/configuration/configuration.py
@@ -1,13 +1,13 @@
1
import os
2
import os.path
3
-from typing import Dict, Optional
+from typing import Any, Dict, Optional
4
5
import yaml
6
from pydantic import BaseModel, Field
7
8
from pyobas.configuration.sources import DictionarySource, EnvironmentSource
9
10
-CONFIGURATION_TYPES = str | int | bool | None
+CONFIGURATION_TYPES = str | int | bool | Any | None
11
12
13
def is_truthy(value: str) -> bool:
0 commit comments