Skip to content

Commit

Permalink
bypass 'defalut' during push git discription 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Andiiiiiiyy committed May 7, 2024
1 parent d2f48ac commit 2f30210
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions shared-data/python/opentrons_shared_data/pipette/load_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ def load_serial_lookup_table() -> Dict[str, str]:
for channel_dir in os.listdir(config_path):
for model_dir in os.listdir(config_path / channel_dir):
for version_file in os.listdir(config_path / channel_dir / model_dir):
if "default" in version_file:
continue
version_list = version_file.split(".json")[0].split("_")
built_model = f"{model_dir}_{_channel_model_str[channel_dir]}_v{version_list[0]}.{version_list[1]}"

Expand Down

0 comments on commit 2f30210

Please sign in to comment.