python: remove star imports

Star imports are discouraged and break pyflakes.

I'm happy to report that pyflakes finds no issues ;)
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2017-07-02 20:26:32 -04:00
parent 0689f766dc
commit 1c6c3ef0bf
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@
import sys
import collections
import re
from xml_helper import *
from xml_helper import xml_parse, xml_print, tree
from copy import deepcopy
TEMPLATE = '''\

View File

@ -22,7 +22,7 @@
import collections
import sys
import re
from xml_helper import *
from xml_helper import xml_parse, xml_print, tree
MDASH = '' if sys.version_info.major >= 3 else ' -- '

View File

@ -23,7 +23,7 @@ import collections
import sys
import os.path
import pprint
from xml_helper import *
from xml_helper import xml_parse
def man(page, number):
return '{}.{}'.format(page, number)