Skip to content

Commit

Permalink
Fix pylint complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigomelo9 committed Jun 30, 2024
1 parent f403d88 commit f027f22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/projects/support.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
sys.exit('ERROR: something does not work as expected')
except SystemExit:
raise
except:
except Exception:
pass

try:
Expand All @@ -55,7 +55,7 @@
sys.exit('ERROR: something does not work as expected')
except SystemExit:
raise
except:
except Exception:
pass

try:
Expand All @@ -71,7 +71,7 @@
sys.exit('ERROR: something does not work as expected')
except SystemExit:
raise
except:
except Exception:
pass

print('INFO: checking Verilog Support')
Expand Down Expand Up @@ -109,7 +109,7 @@
sys.exit('ERROR: something does not work as expected')
except SystemExit:
raise
except:
except Exception:
pass

print('* VHDL Support')
Expand Down

0 comments on commit f027f22

Please sign in to comment.