Skip to content

Commit c77acfb

Browse files
antoinemzsguillaumejparis
authored andcommitted
[client] fix handling configuration of injector contracts (#81)
1 parent 4ea2020 commit c77acfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyobas/configuration/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import os
22
import os.path
3-
from typing import Dict, Optional
3+
from typing import Any, Dict, Optional
44

55
import yaml
66
from pydantic import BaseModel, Field
77

88
from pyobas.configuration.sources import DictionarySource, EnvironmentSource
99

10-
CONFIGURATION_TYPES = str | int | bool | None
10+
CONFIGURATION_TYPES = str | int | bool | Any | None
1111

1212

1313
def is_truthy(value: str) -> bool:

0 commit comments

Comments
 (0)