From be8e732239f6f4149bcc768c5c6ed13ab4884a58 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 14 Jul 2024 14:57:58 +0000 Subject: [PATCH] style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf This commit fixes the style issues introduced in 2ab32c6 according to the output from Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf. Details: None --- .../real_time_sentiment_analysis.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/features/sentiment_analysis_market_prediction/real_time_sentiment_analysis.rs b/features/sentiment_analysis_market_prediction/real_time_sentiment_analysis.rs index 5f1196fe5..10c5e8a44 100644 --- a/features/sentiment_analysis_market_prediction/real_time_sentiment_analysis.rs +++ b/features/sentiment_analysis_market_prediction/real_time_sentiment_analysis.rs @@ -8,6 +8,8 @@ struct RealTimeSentimentAnalysis { impl RealTimeSentimentAnalysis { fn new() -> Self { // Implement real-time sentiment analysis and market prediction using streaming data here - Self { sd: StreamingData::new() } + Self { + sd: StreamingData::new(), + } } }