Skip to content

Commit 1370f8f

Browse files
authored
Merge pull request #29271 from Rostepher/appease-python-lint
[Python: flake8] Appease the utils/python_lint.py script.
2 parents 2e73fd7 + bb4e5fe commit 1370f8f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
import sys
1515
from datetime import date
16+
1617
from sphinx.highlighting import lexers
1718

1819
# If extensions (or modules to document with autodoc) are in another directory,

utils/gyb.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@
77
import os
88
import re
99
import sys
10+
import textwrap
11+
import tokenize
12+
from bisect import bisect
13+
14+
1015
try:
1116
from cStringIO import StringIO
1217
except ImportError:
1318
from io import StringIO
14-
import textwrap
15-
import tokenize
16-
from bisect import bisect
19+
1720

1821
try:
1922
basestring

0 commit comments

Comments
 (0)