Skip to content

Commit 1e29644

Browse files
committed
Remove unneeded None annotation from Bootloader.get_default
1 parent 5355c71 commit 1e29644

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

archinstall/lib/models/bootloader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def values() -> list[str]:
3131
return [e.value for e in Bootloader if e != Bootloader.NO_BOOTLOADER or arch_config_handler.args.skip_boot is True]
3232

3333
@classmethod
34-
def get_default(cls) -> None | Bootloader:
34+
def get_default(cls) -> Bootloader:
3535
from ..args import arch_config_handler
3636

3737
if arch_config_handler.args.skip_boot:

0 commit comments

Comments
 (0)