Skip to content

Commit

Permalink
get line data from spreadsheet
Browse files Browse the repository at this point in the history
  • Loading branch information
iiiii7d committed Jan 19, 2025
1 parent c83d773 commit fc8ac0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, config: Config):
)
df = pd.read_csv(cache / "lines")
lines = [
(str(line_name), str(back), w == "TRUE", int(gid))
(str(line_name), str(back), bool(w), int(gid))
for line_name, back, w, gid in zip(
df["line"], df["back"], df["w"], df["gid"]
)
Expand Down

0 comments on commit fc8ac0f

Please sign in to comment.