Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d0fd734

Browse filesBrowse files
committed
formatting fixes
1 parent 140ca3a commit d0fd734
Copy full SHA for d0fd734

File tree

2 files changed

+3
-1
lines changed
Filter options

2 files changed

+3
-1
lines changed

‎sqlalchemy_bigquery/__init__.py

Copy file name to clipboardExpand all lines: sqlalchemy_bigquery/__init__.py
+2Lines 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

Copy file name to clipboardExpand all lines: tests/unit/test__json.py
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.