[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 01/24] python/console_socket: avoid one-letter variable
From: |
John Snow |
Subject: |
[PATCH v4 01/24] python/console_socket: avoid one-letter variable |
Date: |
Thu, 11 Feb 2021 13:58:33 -0500 |
Fixes pylint warnings.
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/qemu/console_socket.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/python/qemu/console_socket.py b/python/qemu/console_socket.py
index ac21130e446..87237bebef7 100644
--- a/python/qemu/console_socket.py
+++ b/python/qemu/console_socket.py
@@ -46,11 +46,11 @@ def __init__(self, address: str, file: Optional[str] = None,
self._drain_thread = self._thread_start()
def __repr__(self) -> str:
- s = super().__repr__()
- s = s.rstrip(">")
- s = "%s, logfile=%s, drain_thread=%s>" % (s, self._logfile,
- self._drain_thread)
- return s
+ tmp = super().__repr__()
+ tmp = tmp.rstrip(">")
+ tmp = "%s, logfile=%s, drain_thread=%s>" % (tmp, self._logfile,
+ self._drain_thread)
+ return tmp
def _drain_fn(self) -> None:
"""Drains the socket and runs while the socket is open."""
--
2.29.2
- [PATCH v4 00/24] python: create installable package, John Snow, 2021/02/11
- [PATCH v4 02/24] iotests/297: add --namespace-packages to mypy arguments, John Snow, 2021/02/11
- [PATCH v4 04/24] python: create utils sub-package, John Snow, 2021/02/11
- [PATCH v4 01/24] python/console_socket: avoid one-letter variable,
John Snow <=
- [PATCH v4 03/24] python: create qemu packages, John Snow, 2021/02/11
- [PATCH v4 05/24] python: add qemu package installer, John Snow, 2021/02/11
- [PATCH v4 08/24] python: Add pipenv support, John Snow, 2021/02/11