Skip to content

Commit

Permalink
fix typing error
Browse files Browse the repository at this point in the history
Signed-off-by: EBoguslawski <eva.boguslawski@gmail.com>
  • Loading branch information
EBoguslawski committed Nov 29, 2024
1 parent abddf01 commit 8dfe10c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grid2op/Chronics/multifolderWithCache.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def seed(self, seed : int):
"""
res = super().seed(seed)
max_int = np.iinfo(dt_int).max
self._cached_seeds = np.empty(len(shape=self._cached_data), dtype=dt_int)
self._cached_seeds = np.empty(len(self._cached_data), dtype=dt_int)
for i in self._order:
data = self._cached_data[i]
seed_ts = self.space_prng.randint(max_int)
Expand Down

0 comments on commit 8dfe10c

Please sign in to comment.