Skip to content

Commit

Permalink
<jx3>[feat]syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
HornCopper committed Aug 5, 2024
1 parent 60f1e05 commit 2da0e51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constant/jx3/skilldatalib.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
import os

with open(CONSTANT + "/jx3/schoolcolors.json", mode="r", encoding="utf-8") as colors:
colorList = json.load(colors)
colorList = json.load(colors.read())

with open(CONSTANT + "/jx3/schoolid.json", mode="r", encoding="utf-8") as school:
force_list = json.loads(school)
force_list = json.loads(school.read())


def kftosh(kf: str) -> str:
Expand Down

0 comments on commit 2da0e51

Please sign in to comment.