Skip to content

Commit b9f2cf4

Browse files
Fix Python ruff format
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent fe4bbd3 commit b9f2cf4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

python/copilot/session_fs_provider.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,9 @@ async def sqlite_query(self, params: Any) -> _GeneratedSqliteQueryResult:
283283
)
284284
if result is None:
285285
return _GeneratedSqliteQueryResult(
286-
columns=[], rows=[], rows_affected=0,
286+
columns=[],
287+
rows=[],
288+
rows_affected=0,
287289
)
288290
rowid = result.last_insert_rowid
289291
wire_rowid = float(rowid) if rowid is not None else None

0 commit comments

Comments
 (0)