chore(Linter): reformatted code with black (#211)

* chore(Linter): reformatted code with black

* Create black.yaml
This commit is contained in:
Mark Aron Szulyovszky
2022-02-17 19:22:17 +01:00
committed by GitHub
parent f3fee4a4e1
commit 8dd2d88740
101 changed files with 2595 additions and 2319 deletions
+5 -2
View File
@@ -19,6 +19,7 @@ class TrainingOutcome:
stats: Optional[Stats]
model_over_time: ModelOverTime
@dataclass
class BetSizingWithMetaOutcome:
model_id: str
@@ -27,11 +28,13 @@ class BetSizingWithMetaOutcome:
weights: WeightsSeries
stats: Optional[Stats]
@dataclass
class DirectionalTrainingOutcome:
training: TrainingOutcome
transformations: TransformationsOverTime
@dataclass
class PipelineOutcome:
directional_training: DirectionalTrainingOutcome
@@ -41,4 +44,4 @@ class PipelineOutcome:
return self.bet_sizing.weights
def get_output_stats(self) -> Stats:
return self.bet_sizing.stats
return self.bet_sizing.stats