Skip to content

Commit

Permalink
PEP8 errors fix
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Nov 18, 2016
1 parent 3297871 commit a5f11b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 7 additions & 1 deletion conda/common/compat.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals

from logging import getLogger
from os import lstat
import os
from logging import getLogger

from .._vendor.auxlib.compat import (iteritems, with_metaclass, itervalues, # NOQA
string_types, primitive_types, text_type, odict, # NOQA
StringIO, isiterable) # NOQA

from ..compat import * # NOQA

log = getLogger(__name__)
Expand Down
1 change: 0 additions & 1 deletion conda/exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,3 @@
PaddingError = conda.exceptions.PaddingError
from conda.common.compat import CrossPlatformStLink # NOQA
CrossPlatformStLink = CrossPlatformStLink

0 comments on commit a5f11b7

Please sign in to comment.