pep8/pyflakes

This commit is contained in:
Martin A. Brown 2016-02-29 20:33:14 -08:00
parent 363bba8a37
commit 16885508da
4 changed files with 9 additions and 9 deletions

View File

@ -5,14 +5,13 @@ from __future__ import absolute_import, division, print_function
import copy
import logging
logger = logging.getLogger(__name__)
from tldp.utils import max_mtime, mtime_gt
from tldp.sources import SourceCollection
from tldp.outputs import OutputCollection
from argparse import Namespace
logger = logging.getLogger(__name__)
# -- any individual document (source or output) will have a status
# from the following list of status_types

View File

@ -7,13 +7,14 @@ import os
import sys
import errno
import logging
logger = logging.getLogger(__name__)
from tldp.ldpcollection import LDPDocumentCollection
from tldp.utils import statfiles, stem_and_ext
from tldp.typeguesser import guess, knownextensions
logger = logging.getLogger(__name__)
def scansourcedirs(dirnames):
'''return a dict() of all SourceDocuments discovered in dirnames

View File

@ -6,12 +6,13 @@ from __future__ import absolute_import, division, print_function
import os
import inspect
import logging
logger = logging.getLogger(__name__)
from tldp.utils import makefh
import tldp.doctypes
logger = logging.getLogger(__name__)
def getDoctypeMembers(membertype):
'''returns a list of tldp.doctypes; convenience function'''

View File

@ -5,7 +5,6 @@ from __future__ import absolute_import, division, print_function
import os
import io
import sys
import time
import errno
import operator