hotfix: Improve UI (#569)

Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de>
This commit is contained in:
Tristan Nolde
2024-01-17 16:22:46 +01:00
committed by GitHub
parent 555e71820d
commit e57ef07a3d
7 changed files with 228 additions and 267 deletions

View File

@ -23,7 +23,7 @@ def test_sentiment_trend_figure(news_db: Session) -> None:
articles = articles.sort_values(by=["timestamp"], ascending=True)
articles["rolling_mean"] = articles["overall_sentiment_label"].rolling(n).mean()
sentiment_elements.sentiment_trend_figure(articles, n)
sentiment_elements.sentiment_trend_figure(articles)
def test_sentiment_gauge_figure() -> None: