File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ def validacao_pis_cofins_nao_informado(self):
204204 "//ns:det/ns:imposto/ns:PIS/ns:PISOutr/ns:CST" ,
205205 namespaces = self .ns
206206 )[0 ].text
207- except :
207+ except BaseException :
208208 CST_PIS = None
209209 self .assertEqual (CST_PIS , None )
210210
@@ -213,7 +213,7 @@ def validacao_pis_cofins_nao_informado(self):
213213 "//ns:det/ns:imposto/ns:PIS/ns:PISOutr/ns:vPIS" ,
214214 namespaces = self .ns
215215 )[0 ].text
216- except :
216+ except BaseException :
217217 vPIS = None
218218 self .assertEqual (vPIS , None )
219219
@@ -223,7 +223,7 @@ def validacao_pis_cofins_nao_informado(self):
223223 "//ns:det/ns:imposto/ns:COFINS/ns:COFINSOutr/ns:CST" ,
224224 namespaces = self .ns
225225 )[0 ].text
226- except :
226+ except BaseException :
227227 CST_COFINS = None
228228 self .assertEqual (CST_COFINS , None )
229229
@@ -232,7 +232,7 @@ def validacao_pis_cofins_nao_informado(self):
232232 "//ns:det/ns:imposto/ns:COFINS/ns:COFINSOutr/ns:vCOFINS" ,
233233 namespaces = self .ns
234234 )[0 ].text
235- except :
235+ except BaseException :
236236 vCOFINS = None
237237 self .assertEqual (vCOFINS , None )
238238
You can’t perform that action at this time.
0 commit comments