From 236f0ec59ca7e64c14328243346789854f38f77c Mon Sep 17 00:00:00 2001 From: KrystalDelusion <93062060+KrystalDelusion@users.noreply.github.com> Date: Tue, 8 Jul 2025 15:44:01 +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()