summaryrefslogtreecommitdiff
path: root/psutil/_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/_common.py')
-rw-r--r--psutil/_common.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/psutil/_common.py b/psutil/_common.py
index 3414e8ca..7b6707bd 100644
--- a/psutil/_common.py
+++ b/psutil/_common.py
@@ -46,6 +46,7 @@ PY3 = sys.version_info[0] == 3
PSUTIL_DEBUG = bool(os.getenv('PSUTIL_DEBUG', 0))
_DEFAULT = object()
+# fmt: off
__all__ = [
# OS constants
'FREEBSD', 'BSD', 'LINUX', 'NETBSD', 'OPENBSD', 'MACOS', 'OSX', 'POSIX',
@@ -76,6 +77,7 @@ __all__ = [
# shell utils
'hilite', 'term_supports_colors', 'print_color',
]
+# fmt: on
# ===================================================================