Skip to content

Commit 3d5ec46

Browse files
committed
chore: lint - sort import, add trailing , in dict.
1 parent d2529f3 commit 3d5ec46

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/schema-dump.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,21 @@
2222
__version__ = "1.1"
2323
__authors__ = [
2424
"anatoly techtonik <[email protected]>"
25-
"John Rouillard <[email protected]>"
25+
"John Rouillard <[email protected]>",
2626
]
2727

2828
import os
2929
import pprint
3030
import sys
3131
import textwrap
32+
3233
try:
3334
import urllib.parse as url_parser # python 3
3435
except ImportError:
3536
import urlparse as url_parser # python 2
3637

3738
from argparse import ArgumentParser
39+
3840
from roundup.anypy import xmlrpc_
3941

4042
sname = os.path.basename(sys.argv[0])

0 commit comments

Comments
 (0)