From 06bfd9faf4c31138f2a71a3c804e93e23e7bfe13 Mon Sep 17 00:00:00 2001
From: Mathis Hocke <mathis.hocke@fu-berlin.de>
Date: Tue, 1 Aug 2023 16:01:54 +0200
Subject: [PATCH] Fix world_shape default value

---
 src/robofish/io/file.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/robofish/io/file.py b/src/robofish/io/file.py
index d6ce9bd..1ce2f1e 100644
--- a/src/robofish/io/file.py
+++ b/src/robofish/io/file.py
@@ -67,7 +67,7 @@ class File(h5py.File):
         mode: str = "r",
         *,  # PEP 3102
         world_size_cm: List[int] = None,
-        world_shape: str = None,
+        world_shape: str = "rectangle",
         validate: bool = False,
         validate_when_saving: bool = True,
         strict_validate: bool = False,
-- 
GitLab