Skip to content

Commit 696265e

Browse files
authored
X/dev (#69)
* ~Patch pools * ~Patch pools `tag` error? * ~Patch for 'typeerror' string bug issue * ~Adjustments to registry entry for new model types * ~Adjust priority for settings * ~Patches to class stream, constants, pools * +MLX * Catch up branch (#68) * X/dev (#65) * ~Patch pools * ~Patch pools `tag` error? * ~Patch for 'typeerror' string bug issue * ~Adjustments to registry entry for new model types * ~Adjust priority for settings * X/dev (#66) * ~Patch pools * ~Patch pools `tag` error? * ~Patch for 'typeerror' string bug issue * ~Adjustments to registry entry for new model types * ~Adjust priority for settings * ~Patches to class stream, constants, pools * X/dev (#67) * ~Patch pools * ~Patch pools `tag` error? * ~Patch for 'typeerror' string bug issue * ~Adjustments to registry entry for new model types * ~Adjust priority for settings * ~Patches to class stream, constants, pools * +MLX * ~patch pool check
1 parent d00de4a commit 696265e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

zodiac/providers/pools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ async def generate_entry(mir_tag: List[str], mir_db: dict, model_tags: list[str]
7575
mir_info = {}
7676
else:
7777
pkg_data = mir_info.get("pkg")
78-
pkg_data: dict = await add_pkg_types(pkg_data, mode_data, mir_tag)
78+
if pkg_data:
79+
pkg_data: dict = await add_pkg_types(pkg_data, mode_data, mir_tag)
7980
pipe_data = mir_info.get("pipe_names")
8081
if not pipe_data:
8182
pipe_data: list[dict] = await ancestor_data(mir_tag, field_name="pipe_names")

0 commit comments

Comments
 (0)