Skip to content

Commit

Permalink
简化polars_ta函数
Browse files Browse the repository at this point in the history
  • Loading branch information
wukan1986 committed Jun 29, 2024
1 parent 51a3e71 commit e2405a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion expr_codegen/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.1"
__version__ = "0.7.2"
2 changes: 1 addition & 1 deletion expr_codegen/polars/printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ def _print_gp_rank(self, expr):
return "cs_rank(%s)" % self._print(expr.args[1])

def _print_gp_demean(self, expr):
return "cs_neutralize_demean(%s)" % self._print(expr.args[1])
return "cs_demean(%s)" % self._print(expr.args[1])

0 comments on commit e2405a4

Please sign in to comment.