Fixed lack of return statement
This commit is contained in:
parent
d3b39effd7
commit
14d1c4b38c
@ -366,6 +366,11 @@ class GlobalProtectConnection(
|
|||||||
!= "b"
|
!= "b"
|
||||||
):
|
):
|
||||||
raise errors.InvalidOptions.invalid_type("use_default_browser", "b", sig)
|
raise errors.InvalidOptions.invalid_type("use_default_browser", "b", sig)
|
||||||
|
if (
|
||||||
|
sig := options.get("firefox_browser_container", Variant("s", "")).signature
|
||||||
|
!= "s"
|
||||||
|
):
|
||||||
|
raise errors.InvalidOptions.invalid_type("use_default_browser", "s", sig)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def restore_options(cls, options: dict) -> dict[str, Variant]:
|
def restore_options(cls, options: dict) -> dict[str, Variant]:
|
||||||
@ -376,3 +381,5 @@ class GlobalProtectConnection(
|
|||||||
cls.put_value(result, "b", options, "verify_certificate")
|
cls.put_value(result, "b", options, "verify_certificate")
|
||||||
cls.put_value(result, "b", options, "allow_insecure_crypto")
|
cls.put_value(result, "b", options, "allow_insecure_crypto")
|
||||||
cls.put_value(result, "b", options, "use_default_browser")
|
cls.put_value(result, "b", options, "use_default_browser")
|
||||||
|
cls.put_value(result, "s", options, "firefox_browser_container")
|
||||||
|
return result
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user