From 3a9926ffa326086016a5ee359571d0fceea4a4c9 Mon Sep 17 00:00:00 2001 From: kshitij-maths Date: Mon, 11 May 2026 11:56:20 +0200 Subject: [PATCH] fix: typo in database str --- ezyrb/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ezyrb/database.py b/ezyrb/database.py index 5a2bf6b..8be5ddd 100644 --- a/ezyrb/database.py +++ b/ezyrb/database.py @@ -131,7 +131,7 @@ def __len__(self): def __str__(self): """Print minimal info about the Database""" s = "Database with {} snapshots and {} parameters".format( - self.snapshots_matrix.shape[1], self.parameters_matrix.shape[1] + self.snapshots_matrix.shape[0], self.parameters_matrix.shape[1] ) return s