Skip to content

Commit

Permalink
Merge pull request #550 from freqtrade/dependabot/pip/codespell-2.4.0
Browse files Browse the repository at this point in the history
chore(deps-dev): bump codespell from 2.3.0 to 2.4.0
  • Loading branch information
xmatthias authored Jan 27, 2025
2 parents 8266a39 + 4c9a1ee commit 0d2161d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ syrupy==4.8.1

ruff==0.9.3
isort==5.13.2
codespell==2.3.0
codespell==2.4.0
2 changes: 1 addition & 1 deletion technical/consensus/consensus.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def score(self, prefix="consensus", smooth=None):
dataframe = self.dataframe
scores = dataframe.filter(regex="^(buy|sell)_.*").fillna(0)

# computes a score between 0 and 100. The closer to 100 the more aggrement
# computes a score between 0 and 100. The closer to 100 the more agreement
dataframe.loc[:, f"{prefix}_score_sell"] = (
scores.filter(regex="^(sell)_.*").sum(axis=1) / self.sell_weights * 100
)
Expand Down

0 comments on commit 0d2161d

Please sign in to comment.