Skip to content

Commit b77a43b

Browse files
authored
Remove unneeded None annotation from Bootloader.get_default (#3680)
1 parent 5355c71 commit b77a43b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)