Skip to content

Commit d0fd734

Browse files
committed
formatting fixes
1 parent 140ca3a commit d0fd734

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

sqlalchemy_bigquery/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import warnings
2424

2525
from .version import __version__
26+
2627
from .base import BigQueryDialect, dialect
2728
from ._types import (
2829
ARRAY,
@@ -44,6 +45,7 @@
4445
TIME,
4546
TIMESTAMP,
4647
)
48+
4749
from . import _versions_helpers
4850

4951
sys_major, sys_minor, sys_micro = _versions_helpers.extract_runtime_version()

tests/unit/test__json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_set_json_serde(faux_conn, metadata, json_table, json_data):
4343
def test_json_create(faux_conn, metadata, json_table, json_data):
4444
expr = sqlalchemy.schema.CreateTable(json_table)
4545
sql = expr.compile(faux_conn.engine).string
46-
assert sql == ("\nCREATE TABLE `json_table` (\n" "\t`json` JSON\n" ") \n\n")
46+
assert sql == "\nCREATE TABLE `json_table` (\n\t`json` JSON\n) \n\n"
4747

4848

4949
def test_json_insert(faux_conn, metadata, json_table, json_data):

0 commit comments

Comments
 (0)