Skip to content

Commit 175fd03

Browse files
committed
🚨 fix linter errors
1 parent 41a4c5d commit 175fd03

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/sqlite3_to_mysql/mysql_utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from packaging import version
99
from packaging.version import Version
1010

11+
1112
# Shamelessly copied from SQLAlchemy's dialects/mysql/__init__.py
1213
MYSQL_COLUMN_TYPES: t.Tuple[str, ...] = (
1314
"BIGINT",

src/sqlite3_to_mysql/transporter.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
convert_timedelta,
3030
unicase_compare,
3131
)
32+
3233
from .mysql_utils import (
3334
MYSQL_BLOB_COLUMN_TYPES,
3435
MYSQL_COLUMN_TYPES,
@@ -38,8 +39,8 @@
3839
MYSQL_TEXT_COLUMN_TYPES_WITH_JSON,
3940
check_mysql_fulltext_support,
4041
check_mysql_json_support,
41-
safe_identifier_length,
4242
check_mysql_values_alias_support,
43+
safe_identifier_length,
4344
)
4445
from .types import SQLite3toMySQLAttributes, SQLite3toMySQLParams
4546

0 commit comments

Comments
 (0)