3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-17 18:32:18 +00:00

Revert "work around pypy bug"

This reverts commit b47d2829f9.
This commit is contained in:
KrystalDelusion 2025-06-18 11:01:59 +12:00 committed by GitHub
parent b47d2829f9
commit ea275d3e2b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()