diff --git a/src/py/flwr/server/superlink/state/sqlite_state.py b/src/py/flwr/server/superlink/state/sqlite_state.py index c4296cf1697..182b55d6f77 100644 --- a/src/py/flwr/server/superlink/state/sqlite_state.py +++ b/src/py/flwr/server/superlink/state/sqlite_state.py @@ -155,7 +155,7 @@ def initialize(self, log_queries: bool = False) -> list[tuple[str]]: Returns ------- list[tuple[str]] - The list of all tables on the DB. + The list of all tables in the DB. """ self.conn = sqlite3.connect(self.database_path) self.conn.execute("PRAGMA foreign_keys = ON;")