mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-02-01 10:31:54 +08:00
lint fixes
This commit is contained in:
@@ -37,9 +37,9 @@ def test_ok(tmpdir) -> None: # type: ignore
|
||||
queue: "multiprocessing.Queue[Literal[True]]" = multiprocessing.Queue()
|
||||
|
||||
ustreamer_sock_path = os.path.abspath(str(tmpdir.join("ustreamer-fake.sock")))
|
||||
open(ustreamer_sock_path, "w").close()
|
||||
open(ustreamer_sock_path, "w").close() # pylint: disable=consider-using-with
|
||||
kvmd_sock_path = os.path.abspath(str(tmpdir.join("kvmd-fake.sock")))
|
||||
open(kvmd_sock_path, "w").close()
|
||||
open(kvmd_sock_path, "w").close() # pylint: disable=consider-using-with
|
||||
|
||||
def ustreamer_fake() -> None:
|
||||
setproctitle.setproctitle("kvmd/streamer: /usr/bin/ustreamer")
|
||||
|
||||
Reference in New Issue
Block a user