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 committed Nov 26, 2024
1 parent dcd2002 commit 8cdcfa5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyanaconda/modules/storage/bootloader/efi.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
from pyanaconda.anaconda_loggers import get_module_logger
log = get_module_logger(__name__)

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


class EFIBase(object):
Expand Down

0 comments on commit 8cdcfa5

Please sign in to comment.