From f36b838e2ac553d0b6bfa080e31cbb12f4a42286 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 21 Nov 2020 09:50:03 +0100 Subject: 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. --- nixos/lib/test-driver/test-driver.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'nixos') 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 - """ + """Debugging: Dump the contents of the TTY""" 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") -- cgit v1.2.3