summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-11-21 09:50:03 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2020-11-21 09:51:31 +0100
commitf36b838e2ac553d0b6bfa080e31cbb12f4a42286 (patch)
treed42c78c497b4eb133b4df9eb805830ee34c0460d /nixos
parent7bea3c7976aa6cb4f9c3614bda2dbbe6dd18dc9b (diff)
nixos test-driver: fix single line docstrings, fixes #104467
Single line docstrings should have the """ on a single line according to PEP 8. It seems support for this landed in the latest version of Black.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/lib/test-driver/test-driver.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/nixos/lib/test-driver/test-driver.py b/nixos/lib/test-driver/test-driver.py
index 68bd35dd98e9..96b75a49928f 100644
--- a/nixos/lib/test-driver/test-driver.py
+++ b/nixos/lib/test-driver/test-driver.py
@@ -634,8 +634,7 @@ class Machine:
shutil.copy(intermediate, abs_target)
def dump_tty_contents(self, tty: str) -> None:
- """Debugging: Dump the contents of the TTY<n>
- """
+ """Debugging: Dump the contents of the TTY<n>"""
self.execute("fold -w 80 /dev/vcs{} | systemd-cat".format(tty))
def get_screen_text(self) -> str:
@@ -860,8 +859,7 @@ class Machine:
self.send_monitor_command("set_link virtio-net-pci.1 off")
def unblock(self) -> None:
- """Make the machine reachable.
- """
+ """Make the machine reachable."""
self.send_monitor_command("set_link virtio-net-pci.1 on")