Skip to content

Commit 4c9a1ee

Browse files
authored
chore: fix typo identified by codespell
1 parent 57f94ac commit 4c9a1ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

technical/consensus/consensus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def score(self, prefix="consensus", smooth=None):
7777
dataframe = self.dataframe
7878
scores = dataframe.filter(regex="^(buy|sell)_.*").fillna(0)
7979

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

0 commit comments

Comments
 (0)