From ce29440c81ba3192d7320d3f09a9b08521004540 Mon Sep 17 00:00:00 2001 From: Justus Mueller <justus.mueller@fau.de> Date: Thu, 13 Jun 2024 17:40:47 +0200 Subject: [PATCH] chore: Correct whitespace for operator --- src/drive_handle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drive_handle.py b/src/drive_handle.py index 423e02e..7db5ef4 100644 --- a/src/drive_handle.py +++ b/src/drive_handle.py @@ -164,7 +164,7 @@ class DriveHandle: except OSError as error: if error.errno == errno.ENOSPC: if len(write_string) > 1: - write_string = write_string[:(len(write_string)//2)] + write_string = write_string[:(len(write_string) // 2)] if (self.get_free_drive_space() == 0): break else: -- GitLab