Skip to content

Commit

Permalink
Merge pull request #156 from efabless/EF-3614-a
Browse files Browse the repository at this point in the history
EF-3614-a | fix | fix wrong varaible usage preventing using the mpw precheck as a module
  • Loading branch information
ef-gps authored Nov 14, 2022
2 parents cf32e16 + d2d67c3 commit 6e32826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpw_precheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def main(*args, **kwargs):

log_info(precheck_config, project_config)
# note: update to filter sequence based on supported pdks
precheck_config['sequence'] = [check for check in sequence if precheck_config['pdk_path'].stem in get_check_manager(check, precheck_config, project_config).__supported_pdks__]
precheck_config['sequence'] = [check for check in precheck_config['sequence'] if precheck_config['pdk_path'].stem in get_check_manager(check, precheck_config, project_config).__supported_pdks__]
run_precheck_sequence(precheck_config=precheck_config, project_config=project_config)


Expand Down

0 comments on commit 6e32826

Please sign in to comment.