Skip to content

Commit

Permalink
✨ Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
luoshuijs committed Oct 24, 2023
1 parent e11981a commit 0327b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_genshin_artifact/enka/enka_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def de_equip_list(equip_list: list[dict]) -> Tuple[WeaponInfo, List[ArtifactInfo
raise EnkaParseException(f"artifact_id is not found in {_flat['icon']}")
set_name = artifacts_name_map.get(artifact_id)
if set_name is None:
raise EnkaParseException(f"artifact_id={artifact_id} is not found")
raise EnkaParseException(f"artifact_id={artifact_id} is not found in assets")
_level = _reliquary["level"] - 1
_reliquary_main_stat = _flat["reliquaryMainstat"]
_main_prop_id = _reliquary_main_stat["mainPropId"]
Expand Down

0 comments on commit 0327b6e

Please sign in to comment.