Skip to content

Commit

Permalink
[client] fix handling configuration of injector contracts (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinemzs authored and guillaumejparis committed Jan 17, 2025
1 parent 4ea2020 commit c77acfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyobas/configuration/configuration.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import os
import os.path
from typing import Dict, Optional
from typing import Any, Dict, Optional

import yaml
from pydantic import BaseModel, Field

from pyobas.configuration.sources import DictionarySource, EnvironmentSource

CONFIGURATION_TYPES = str | int | bool | None
CONFIGURATION_TYPES = str | int | bool | Any | None


def is_truthy(value: str) -> bool:
Expand Down

0 comments on commit c77acfb

Please sign in to comment.