diff options
Diffstat (limited to 'psutil/_pslinux.py')
-rw-r--r-- | psutil/_pslinux.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/psutil/_pslinux.py b/psutil/_pslinux.py index 9dc9643a..4b068f4b 100644 --- a/psutil/_pslinux.py +++ b/psutil/_pslinux.py @@ -59,6 +59,7 @@ else: enum = None +# fmt: off __extra__all__ = [ # 'PROCFS_PATH', @@ -68,7 +69,9 @@ __extra__all__ = [ # connection status constants "CONN_ESTABLISHED", "CONN_SYN_SENT", "CONN_SYN_RECV", "CONN_FIN_WAIT1", "CONN_FIN_WAIT2", "CONN_TIME_WAIT", "CONN_CLOSE", "CONN_CLOSE_WAIT", - "CONN_LAST_ACK", "CONN_LISTEN", "CONN_CLOSING", ] + "CONN_LAST_ACK", "CONN_LISTEN", "CONN_CLOSING", +] +# fmt: on # ===================================================================== |