Skip to content

Commit

Permalink
chore: refix additional python 3.11 ruff complaints
Browse files Browse the repository at this point in the history
due to incorrect conflict resolving
  • Loading branch information
TeeeJay committed Oct 31, 2024
1 parent 7c1f2e6 commit 0a711a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from typing import Dict, Optional, cast
from typing import Optional, cast

from libecalc.presentation.yaml.configuration_service import ConfigurationService
from libecalc.presentation.yaml.yaml_entities import ResourceStream
from libecalc.presentation.yaml.yaml_models.yaml_model import ReaderType, YamlConfiguration, YamlValidator


class OverridableStreamConfigurationService(ConfigurationService):
def __init__(self, stream: ResourceStream, overrides: Optional[Dict] = None):
def __init__(self, stream: ResourceStream, overrides: Optional[dict] = None):
self._overrides = overrides
self._stream = stream

Expand Down

0 comments on commit 0a711a3

Please sign in to comment.