Skip to content

Commit

Permalink
Merge branch 'main' into nostrip
Browse files Browse the repository at this point in the history
  • Loading branch information
MathiasExorde authored Oct 31, 2024
2 parents 74e2d83 + 29c8e7d commit aea2788
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exorde/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def preprocess(text):
text = text.replace("#", "")
text = remove_unicode_escapes(text)
text = preprocess(text)
text = text.lower().strip()
text = text.strip()

return text

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="exorde",
version="v2.5.10",
version="v2.5.13",
author="Exorde Labs",
author_email="[email protected]",
description="The AI-based client to mine data and power the Exorde Network",
Expand Down

0 comments on commit aea2788

Please sign in to comment.