From ea275d3e2bfd73fec7735203d8d7620411d8a0c5 Mon Sep 17 00:00:00 2001 From: KrystalDelusion <93062060+KrystalDelusion@users.noreply.github.com> Date: Wed, 18 Jun 2025 11:01:59 +1200 Subject: [PATCH] Revert "work around pypy bug" This reverts commit b47d2829f9b23e658d03b109f0118476bc78df1b. --- sbysrc/sby_status.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbysrc/sby_status.py b/sbysrc/sby_status.py index 2b63070..e4722c3 100644 --- a/sbysrc/sby_status.py +++ b/sbysrc/sby_status.py @@ -68,8 +68,8 @@ class SbyStatusDb: self.db = sqlite3.connect(path, isolation_level=None, timeout=timeout) self.db.row_factory = sqlite3.Row - self.db.execute("PRAGMA journal_mode=WAL").fetchone() - self.db.execute("PRAGMA synchronous=0").fetchone() + self.db.execute("PRAGMA journal_mode=WAL") + self.db.execute("PRAGMA synchronous=0") if setup: self._setup()