Skip to content

Commit

Permalink
efi: Update __all__ dictionary
Browse files Browse the repository at this point in the history
Add two missing entries (EFISystemdBoot, RISCV64EFIGRUB), then
sort the dictionary so that classes are listed in the same
order as they appear in the file, which will hopefully make
it easier to spot mistakes in the future, and wrap lines so
that the linter doesn't complain about them being too long.

Signed-off-by: Andrea Bolognani <[email protected]>
  • Loading branch information
andreabolognani authored and KKoukiou committed Dec 2, 2024
1 parent d19089a commit 4869b2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyanaconda/modules/storage/bootloader/efi.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
from pyanaconda.anaconda_loggers import get_module_logger
log = get_module_logger(__name__)

__all__ = ["EFIGRUB", "Aarch64EFIGRUB", "Aarch64EFISystemdBoot",
"ArmEFIGRUB", "EFIBase", "X64EFISystemdBoot"]
__all__ = ["EFIBase", "EFIGRUB", "EFISystemdBoot", "Aarch64EFIGRUB", "Aarch64EFISystemdBoot",
"X64EFISystemdBoot", "ArmEFIGRUB", "RISCV64EFIGRUB"]


class EFIBase(object):
Expand Down

0 comments on commit 4869b2f

Please sign in to comment.