Removed debug information

This commit is contained in:
Anton Hvornum 2022-02-09 16:46:50 +01:00
parent 8239c96278
commit 1cf5c64fdc
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 5 additions and 6 deletions

View File

@ -280,7 +280,6 @@ class SysCommandWorker:
raise AssertionError(f"SysCommandWorker().write() requires bytes data to be written, not type({type(data)}).") raise AssertionError(f"SysCommandWorker().write() requires bytes data to be written, not type({type(data)}).")
self.make_sure_we_are_executing() self.make_sure_we_are_executing()
if self.child_fd: if self.child_fd:
written_data = os.write(self.child_fd, data + (b'\n' if line_ending else b'')) written_data = os.write(self.child_fd, data + (b'\n' if line_ending else b''))