We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c328775 commit 27f9eceCopy full SHA for 27f9ece
1 file changed
src/blackgeorge/store/sqlite.py
@@ -84,9 +84,7 @@ def __init__(self, path: str) -> None:
84
"CREATE INDEX IF NOT EXISTS idx_events_timestamp ON events(timestamp)"
85
)
86
self._conn.execute("CREATE INDEX IF NOT EXISTS idx_runs_status ON runs(status)")
87
- self._conn.execute(
88
- "CREATE INDEX IF NOT EXISTS idx_runs_created_at ON runs(created_at)"
89
- )
+ self._conn.execute("CREATE INDEX IF NOT EXISTS idx_runs_created_at ON runs(created_at)")
90
91
def _connect(self) -> sqlite3.Connection:
92
return self._conn
0 commit comments