Skip to content

Commit

Permalink
2024-03-24 13:58 quick bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
sctop committed Mar 24, 2024
1 parent 3cf3d01 commit 1ea89f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data
Submodule data updated 1412 files
6 changes: 5 additions & 1 deletion data_model/actual_data/_story/story_part_auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ def load(self):
self.data_all.load()

# pre-process
del self.data["track_to_bg"]["OST_0"]
try:
del self.data["track_to_bg"]["OST_0"]
except KeyError:
# it's okay if it doesn't exist
pass

# track to bg
for (track_id, bgs) in self.data["track_to_bg"].items():
Expand Down

0 comments on commit 1ea89f8

Please sign in to comment.