Add isort pre-commit hook, sort imports in src and test directories

This commit is contained in:
Darren Burns
2023-02-09 13:28:08 +00:00
parent 67c2127e46
commit 9287f64a66
131 changed files with 268 additions and 297 deletions

View File

@@ -46,8 +46,8 @@ async def test_table_clear_with_columns() -> None:
assert table.data == {}
assert table.row_count == 0
async def test_table_add_row() -> None:
async def test_table_add_row() -> None:
app = TableApp()
async with app.run_test():
table = app.query_one(DataTable)