Skip to content

Commit

Permalink
fixed type in Random strat
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelGard committed Jun 14, 2024
1 parent 6250988 commit 2d3b706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cira/strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2d3b706

Please sign in to comment.