mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Configured and applied isort, refs #516
This commit is contained in:
parent
17ec309e14
commit
59a5d336bd
78 changed files with 435 additions and 352 deletions
|
|
@ -1,14 +1,17 @@
|
|||
"""
|
||||
Tests for the datasette.database.Database class
|
||||
"""
|
||||
from datasette.database import Database, Results, MultipleValues
|
||||
from datasette.utils.sqlite import sqlite3
|
||||
from datasette.utils import Column
|
||||
from .fixtures import app_client, app_client_two_attached_databases_crossdb_enabled
|
||||
import pytest
|
||||
import time
|
||||
import uuid
|
||||
|
||||
import pytest
|
||||
|
||||
from datasette.database import Database, MultipleValues, Results
|
||||
from datasette.utils import Column
|
||||
from datasette.utils.sqlite import sqlite3
|
||||
|
||||
from .fixtures import app_client, app_client_two_attached_databases_crossdb_enabled
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def db(app_client):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue