Skip to content

Commit

Permalink
Improve exception handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Demfier authored Dec 21, 2023
1 parent 6bc7c58 commit 1740110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def extract_audio_features():
feature_list, index=columns).transpose(),
ignore_index=True)
except Exception as e:
print('Some exception occurred: {}'.format(e)
print('Some exception occurred: {}'.format(e))

df_features.to_csv('data/pre-processed/audio_features.csv', index=False)

Expand Down

0 comments on commit 1740110

Please sign in to comment.