Skip to content

Commit 8e95f06

Browse files
committed
Replace an Any instance in U2FLoginConfiguration.parse_arg
1 parent 2bb98bc commit 8e95f06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

archinstall/lib/models/authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def json(self) -> U2FLoginConfigSerialization:
4040
}
4141

4242
@staticmethod
43-
def parse_arg(args: dict[str, Any]) -> 'U2FLoginConfiguration | None':
43+
def parse_arg(args: U2FLoginConfigSerialization) -> 'U2FLoginConfiguration | None':
4444
u2f_login_method = args.get('u2f_login_method')
4545

4646
if u2f_login_method is None:

0 commit comments

Comments
 (0)