From f9d2e1e1b98346f52b1f6fd0d79e1dcadb03e5a8 Mon Sep 17 00:00:00 2001 From: parmigggiana <59255877+parmigggiana@users.noreply.github.com> Date: Wed, 6 Nov 2024 16:29:41 +0100 Subject: [PATCH] Remove unused method --- pinolo.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pinolo.py b/pinolo.py index d24d492..03e6682 100644 --- a/pinolo.py +++ b/pinolo.py @@ -416,18 +416,6 @@ def standard_procedure(self): if dialog[1]: self.load_system(std=True, drives=drives) - @staticmethod - def get_wipe_disks_message(drives): - if len(drives) > 1: - message = f"Do you want to wipe these disks?" - for drive in drives: - message += f"\n{drive}" - elif len(drives) > 0: - message = f"Do you want to wipe {drives[0]}?" - else: - message = f"Do you want to wipe selected disks?" - return message - def erase(self, std=False, drives=None): """This function send to the server a queued_badblocks command. If "std" is True it will skip the confirm dialog."""