summaryrefslogtreecommitdiff
path: root/psutil/_compat.py
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2015-02-07 05:23:27 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2015-02-07 05:23:27 +0100
commit2c81d1e838ee63e89de411c2d908d06e6058ba8f (patch)
treed2232bafb26095d9add7f7d4e5c9fca18fb84f07 /psutil/_compat.py
parent97ecaf5877ea6d2599225ab2a76675b8b9edbfc9 (diff)
downloadpsutil-2c81d1e838ee63e89de411c2d908d06e6058ba8f.tar.gz
fix flake8 complaints
Diffstat (limited to 'psutil/_compat.py')
-rw-r--r--psutil/_compat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/psutil/_compat.py b/psutil/_compat.py
index b52a04f0..dbb8dc1c 100644
--- a/psutil/_compat.py
+++ b/psutil/_compat.py
@@ -6,12 +6,12 @@
"""Module which provides compatibility with older Python versions."""
-__all__ = ["PY3", "long", "xrange", "unicode", "callable", "lru_cache"]
-
import collections
import functools
import sys
+__all__ = ["PY3", "long", "xrange", "unicode", "callable", "lru_cache"]
+
PY3 = sys.version_info[0] == 3
if PY3: