Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions core/_10_gen_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
import subprocess
from typing import Tuple

# noqa: F401 - eval() of xlsx columns under numpy>=2.0 needs np in scope
# (pandas serializes floats as np.float64(...) repr instead of bare numbers)
import numpy as np # noqa: F401

import pandas as pd
from pydub import AudioSegment
from rich.console import Console
Expand Down
4 changes: 4 additions & 0 deletions core/_11_merge_audio.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import os

# noqa: F401 - eval() of xlsx columns under numpy>=2.0 needs np in scope
# (pandas serializes floats as np.float64(...) repr instead of bare numbers)
import numpy as np # noqa: F401
import pandas as pd
import subprocess
from pydub import AudioSegment
Expand Down