From efc26d2bec0e940a193bb3cad8cc0a7d8707c0da Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Fri, 21 Oct 2022 02:08:54 +0200 Subject: do not blackify __all__ --- psutil/_compat.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'psutil/_compat.py') diff --git a/psutil/_compat.py b/psutil/_compat.py index 52e762b1..2f47cb36 100644 --- a/psutil/_compat.py +++ b/psutil/_compat.py @@ -16,6 +16,7 @@ import sys import types +# fmt: off __all__ = [ # constants "PY3", @@ -31,7 +32,9 @@ __all__ = [ "redirect_stderr", # python 3 exceptions "FileNotFoundError", "PermissionError", "ProcessLookupError", - "InterruptedError", "ChildProcessError", "FileExistsError"] + "InterruptedError", "ChildProcessError", "FileExistsError", +] +# fmt: on PY3 = sys.version_info[0] == 3 -- cgit v1.2.1