mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-08-14 05:14:22 +02:00
Fixes for Pyright, closes #833
This commit is contained in:
parent
38fe466700
commit
ebb04a97de
16 changed files with 109 additions and 85 deletions
|
|
@ -1220,7 +1220,7 @@ def test_rows(db_path, args, expected):
|
|||
{"id": 1, "age": 4, "name": "Cleo"},
|
||||
{"id": 2, "age": 2, "name": "Pancakes"},
|
||||
],
|
||||
column_order=("id", "name", "age"),
|
||||
column_order=["id", "name", "age"],
|
||||
)
|
||||
result = CliRunner().invoke(cli.cli, ["rows", db_path, "dogs"] + args)
|
||||
assert expected == result.output.strip()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue