Skip to content

Commit e8d358e

Browse files
committed
Re-ordered package imports alphabetically
1 parent 64edd89 commit e8d358e

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

pycodestyle.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,18 @@
4848
"""
4949
from __future__ import with_statement
5050

51+
import inspect
52+
import keyword
5153
import os
52-
import sys
5354
import re
55+
import sys
5456
import time
55-
import inspect
56-
import keyword
5757
import tokenize
5858
import warnings
59-
from optparse import OptionParser
59+
6060
from fnmatch import fnmatch
61+
from optparse import OptionParser
62+
6163
try:
6264
from configparser import RawConfigParser
6365
from io import TextIOWrapper

0 commit comments

Comments
 (0)