@@ -90,29 +90,33 @@ def __init__(
9090 InpError: SEMANTICS_OPTION.
9191 """
9292
93- if ides is not None and not (isinstance (ides , types .Jump ) or ides .value in {0 , 1 }):
93+ if ides is not None and not (isinstance (ides . value , types .Jump ) or ides .value in {0 , 1 }):
9494 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , ides )
95- if iphot is not None and not (isinstance (iphot , types .Jump ) or iphot .value in {0 , 1 }):
95+ if iphot is not None and not (isinstance (iphot . value , types .Jump ) or iphot .value in {0 , 1 }):
9696 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , iphot )
97- if ibad is not None and not (isinstance (ibad , types .Jump ) or ibad .value in {0 , 1 }):
97+ if ibad is not None and not (isinstance (ibad . value , types .Jump ) or ibad .value in {0 , 1 }):
9898 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , ibad )
99- if istrg is not None and not (isinstance (istrg , types .Jump ) or istrg .value in {0 , 1 }):
99+ if istrg is not None and not (isinstance (istrg . value , types .Jump ) or istrg .value in {0 , 1 }):
100100 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , istrg )
101- if xnum is not None and not (isinstance (xnum , types .Jump ) or xnum .value >= 0 ):
101+ if xnum is not None and not (isinstance (xnum . value , types .Jump ) or xnum .value >= 0 ):
102102 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , xnum )
103- if rnok is not None and not (isinstance (rnok , types .Jump ) or rnok .value >= 0 ):
103+ if rnok is not None and not (isinstance (rnok . value , types .Jump ) or rnok .value >= 0 ):
104104 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , rnok )
105- if enum is not None and not (isinstance (enum , types .Jump ) or enum .value >= 0 ):
105+ if enum is not None and not (isinstance (enum . value , types .Jump ) or enum .value >= 0 ):
106106 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , enum )
107- if numb is not None and not (isinstance (numb , types .Jump ) or numb .value >= 0 ):
107+ if numb is not None and not (isinstance (numb . value , types .Jump ) or numb .value >= 0 ):
108108 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , numb )
109109 if i_mcs_model is not None and not (
110- isinstance (i_mcs_model , types .Jump ) or i_mcs_model .value in {- 1 , 0 }
110+ isinstance (i_mcs_model . value , types .Jump ) or i_mcs_model .value in {- 1 , 0 }
111111 ):
112112 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , i_mcs_model )
113- if efac is not None and not (isinstance (efac , types .Jump ) or 0.8 <= efac .value <= 0.99 ):
113+ if efac is not None and not (
114+ isinstance (efac .value , types .Jump ) or 0.8 <= efac .value <= 0.99
115+ ):
114116 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , efac )
115- if ckvnum is not None and not (isinstance (ckvnum , types .Jump ) or 0 <= ckvnum .value < 1 ):
117+ if ckvnum is not None and not (
118+ isinstance (ckvnum .value , types .Jump ) or 0 <= ckvnum .value < 1
119+ ):
116120 raise errors .InpError (errors .InpCode .SEMANTICS_OPTION , ckvnum )
117121
118122 self .value : typing .Final [types .Tuple ] = types .Tuple (
0 commit comments