Skip to content

Commit 981684d

Browse files
committed
Fix long line detected by pylint
1 parent cd5b70b commit 981684d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/mysql/connector/constants.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,9 @@ class CharacterSet(_Constants):
681681
"""
682682

683683
# Use LTS character set as default
684-
desc: List[Optional[Tuple[str, str, bool]]] = MYSQL_CHARACTER_SETS_57 # type: ignore[assignment]
684+
desc: List[
685+
Optional[Tuple[str, str, bool]]
686+
] = MYSQL_CHARACTER_SETS_57 # type: ignore[assignment]
685687
mysql_version: Tuple[int, ...] = (5, 7)
686688

687689
# Multi-byte character sets which use 5c (backslash) in characters

0 commit comments

Comments
 (0)