Skip to content

Commit

Permalink
changed the utils import to import only the function
Browse files Browse the repository at this point in the history
  • Loading branch information
cparcerisas committed Jan 20, 2025
1 parent df42de7 commit 9b0b982
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pbp/meta_gen/gen_abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import pandas as pd

import utils
from pbp.meta_gen.utils import check_start_end_args


class MetadataGeneratorAbstract(object):
Expand Down Expand Up @@ -38,7 +38,7 @@ def __init__(
:return:
"""
try:
start, end = utils.check_start_end_args(start, end)
start, end = check_start_end_args(start, end)
self.audio_loc = audio_loc
self.json_base_dir = json_base_dir
self.df = pd.DataFrame()
Expand Down Expand Up @@ -95,7 +95,7 @@ def __init__(
:return:
"""
try:
start, end = utils.check_start_end_args(start, end)
start, end = check_start_end_args(start, end)
self.audio_loc = audio_loc
self.json_base_dir = json_base_dir
self.df = pd.DataFrame()
Expand Down

0 comments on commit 9b0b982

Please sign in to comment.