client fs: drop duplicate constants

This commit is contained in:
Dan Bungert 2022-03-09 15:06:28 -07:00
parent 00d239f2c2
commit 9554b2471c
1 changed files with 0 additions and 4 deletions

View File

@ -39,10 +39,6 @@ from subiquity.ui.views.filesystem.probing import (
log = logging.getLogger("subiquity.client.controllers.filesystem")
BIOS_GRUB_SIZE_BYTES = 1 * 1024 * 1024 # 1MiB
PREP_GRUB_SIZE_BYTES = 8 * 1024 * 1024 # 8MiB
UEFI_GRUB_SIZE_BYTES = 512 * 1024 * 1024 # 512MiB EFI partition
class FilesystemController(SubiquityTuiController, FilesystemManipulator):