Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlul committed Dec 8, 2024
1 parent b05115f commit c10e5cc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/job_rush.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ def transform_structure(wikitext: Dict[str, str]) -> Optional[Dict[str, Any]]:
konami_id = int_or_none(wikitext.get("database_id"))
document = {"konami_id": konami_id, "name": transform_names(wikitext)}
if "condition" in wikitext:
document["summoning_condition"] = transform_multilanguage(
wikitext, "condition"
)
document["summoning_condition"] = transform_multilanguage(wikitext, "condition")
if "requirement" in wikitext: # everything except Normal Monsters
document["requirement"] = transform_multilanguage(wikitext, "requirement")
if wikitext.get("effect_types"):
Expand Down

0 comments on commit c10e5cc

Please sign in to comment.