Skip to content

Commit

Permalink
less noise
Browse files Browse the repository at this point in the history
  • Loading branch information
brumar committed Oct 17, 2024
1 parent b44a1b7 commit 8ca5faf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podcastfy/core/podcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def wrapper(self, *args, **kwargs):
result = func(self, *args, **kwargs)
next_state = PodcastState(self.state.value + 1)
self.state = next_state or self.state
print(f"Done! Current State: {self.state.name}")
print(f"Done!")
return result
except Exception as e:
print(f"Error in {func.__name__}: {str(e)}")
Expand Down

0 comments on commit 8ca5faf

Please sign in to comment.