diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-15 21:48:09 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-15 21:48:09 +0100 |
commit | 22169b99b7756349baddae84b2b4e058acce5599 (patch) | |
tree | 0872a0b01322f2b776ee99b43c54fd3e824cf85e /scripts/whconsole.py | |
parent | a961fbda426d79dc3c33a66848408e84b0737a98 (diff) | |
download | kutter-22169b99b7756349baddae84b2b4e058acce5599.tar.gz kutter-22169b99b7756349baddae84b2b4e058acce5599.tar.xz kutter-22169b99b7756349baddae84b2b4e058acce5599.zip |
Isort all scriptsv0.1.0-rc1
Diffstat (limited to 'scripts/whconsole.py')
-rwxr-xr-x | scripts/whconsole.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/whconsole.py b/scripts/whconsole.py index 59e726f1..6d4af8e1 100755 --- a/scripts/whconsole.py +++ b/scripts/whconsole.py @@ -4,7 +4,15 @@ # Copyright (C) 2020 Kevin O'Connor <kevin@koconnor.net> # # This file may be distributed under the terms of the GNU GPLv3 license. -import sys, os, optparse, socket, fcntl, select, json, errno, time +import errno +import fcntl +import json +import optparse +import os +import select +import socket +import sys +import time # Set a file-descriptor as non-blocking |