From 2d3b706be45528d1035e3a0441296df5eac675e8 Mon Sep 17 00:00:00 2001 From: Axel Gard Date: Fri, 14 Jun 2024 14:56:16 +0200 Subject: [PATCH] fixed type in Random strat --- cira/strategy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cira/strategy.py b/cira/strategy.py index da3dac2..1c50c6b 100644 --- a/cira/strategy.py +++ b/cira/strategy.py @@ -48,8 +48,8 @@ def load(cls, file_path): class Randomness(Strategy): def __init__( self, - lower: float | int = -1, - upper: float | int = 1, + lower: float = -1, + upper: float = 1, seed=0, use_float: bool = False, ) -> None: