Skip to content

Commit

Permalink
chore(format): run black on main
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 21, 2024
1 parent 7129a44 commit c811df4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rvc/train/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,8 @@ def train_and_evaluate(rank, epoch, hps, nets, optims, scaler, loaders, writers,
if best_epoch == hps.overtraining_threshold:
old_model_files = glob.glob(
os.path.join(
hps.model_dir, "{}_{}e_{}s_best_epoch.pth".format(hps.name, "*", "*")
hps.model_dir,
"{}_{}e_{}s_best_epoch.pth".format(hps.name, "*", "*"),
)
)
for file in old_model_files:
Expand Down

0 comments on commit c811df4

Please sign in to comment.