8000 Update black version (#1026) · githubhuiyuan/PyMySQL@72f70c9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 72f70c9

Browse files
authored
Update black version (PyMySQL#1026)
1 parent 534f4a6 commit 72f70c9

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/source/conf.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
master_doc = "index"
4747

4848
# General information about the project.
49-
project = u"PyMySQL"
50-
copyright = u"2016, Yutaka Matsubara and GitHub contributors"
49+
project = "PyMySQL"
50+
copyright = "2016, Yutaka Matsubara and GitHub contributors"
5151

5252
# The version info for the project you're documenting, acts as replacement for
5353
# |version| and |release|, also used in various other places throughout the
@@ -200,8 +200,8 @@
200200
(
201201
"index",
202202
"PyMySQL.tex",
203-
u"PyMySQL Documentation",
204-
u"Yutaka Matsubara and GitHub contributors",
203+
"PyMySQL Documentation",
204+
"Yutaka Matsubara and GitHub contributors",
205205
"manual",
206206
),
207207
]
@@ -235,8 +235,8 @@
235235
(
236236
"index",
237237
"pymysql",
238-
u"PyMySQL Documentation",
239-
[u"Yutaka Matsubara and GitHub contributors"],
238+
"PyMySQL Documentation",
239+
["Yutaka Matsubara and GitHub contributors"],
240240
1,
241241
)
242242
]
@@ -254,8 +254,8 @@
254254
(
255255
"index",
256256
"PyMySQL",
257-
u"PyMySQL Documentation",
258-
u"Yutaka Matsubara and GitHub contributors",
257+
"PyMySQL Documentation",
258+
"Yutaka Matsubara and GitHub contributors",
259259
"PyMySQL",
260260
"One line description of project.",
261261
"Miscellaneous",

pymysql/connections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262
DEFAULT_CHARSET = "utf8mb4"
6363

64-
MAX_PACKET_LEN = 2 ** 24 - 1
64+
MAX_PACKET_LEN = 2**24 - 1
6565

6666

6767
def _pack_int24(n):

0 commit comments

Comments
 (0)
0