Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasKoehneckeAA committed Feb 15, 2024
1 parent a233ea1 commit ce94cdf
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from abc import ABC, abstractmethod
from pathlib import Path
from typing import Any, Sequence
from intelligence_layer.evaluation.data_storage.utils import FileBasedRepository

from intelligence_layer.evaluation.data_storage.utils import FileBasedRepository
from intelligence_layer.evaluation.domain import (
AggregatedEvaluation,
AggregationOverview,
Expand Down Expand Up @@ -59,7 +59,9 @@ def aggregation_overview(
if not file_path.exists():
return None
content = self.read_utf8(file_path)
return AggregationOverview[stat_type].model_validate_json(content) # type:ignore
return AggregationOverview[stat_type].model_validate_json( # type:ignore
content
)

def store_aggregation_overview(
self, overview: AggregationOverview[AggregatedEvaluation]
Expand Down

0 comments on commit ce94cdf

Please sign in to comment.