File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ def __init__(self, data: Dict):
127127 self .__signature_command : str = data .get ("detach_signature_command" , None )
128128 self .__aws_cf_enable : bool = data .get ("aws_cf_enable" , False )
129129 radas_config : Dict = data .get ("radas" , None )
130+ self .__radas_config : Optional [RadasConfig ] = None
130131 if radas_config :
131132 self .__radas_config = RadasConfig (radas_config )
132133 self .__radas_enabled = bool (self .__radas_config and self .__radas_config .validate ())
@@ -163,7 +164,7 @@ def is_aws_cf_enable(self) -> bool:
163164 def is_radas_enabled (self ) -> bool :
164165 return self .__radas_enabled
165166
166- def get_radas_config (self ) -> RadasConfig :
167+ def get_radas_config (self ) -> Optional [ RadasConfig ] :
167168 return self .__radas_config
168169
169170
You can’t perform that action at this time.
0 commit comments