3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-11 07:40:54 +00:00

Revert "work around pypy bug"

This reverts commit b47d2829f9.
This commit is contained in:
KrystalDelusion 2025-07-08 15:44:01 +12:00 committed by Krystine Sherwin
parent 17b74bf3d6
commit 236f0ec59c
No known key found for this signature in database

View file

@ -68,8 +68,8 @@ class SbyStatusDb:
self.db = sqlite3.connect(path, isolation_level=None, timeout=timeout) self.db = sqlite3.connect(path, isolation_level=None, timeout=timeout)
self.db.row_factory = sqlite3.Row self.db.row_factory = sqlite3.Row
self.db.execute("PRAGMA journal_mode=WAL").fetchone() self.db.execute("PRAGMA journal_mode=WAL")
self.db.execute("PRAGMA synchronous=0").fetchone() self.db.execute("PRAGMA synchronous=0")
if setup: if setup:
self._setup() self._setup()