Skip to content

Commit

Permalink
chore(python): Deprecate more non-keyword arguments (pola-rs#7030)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored and josemasar committed Feb 22, 2023
1 parent f722d57 commit d436ff0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions py-polars/polars/internals/lazy_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1640,10 +1640,7 @@ def corr(
)


def cov(
a: str | pli.Expr,
b: str | pli.Expr,
) -> pli.Expr:
def cov(a: str | pli.Expr, b: str | pli.Expr) -> pli.Expr:
"""
Compute the covariance between two columns/ expressions.
Expand Down

0 comments on commit d436ff0

Please sign in to comment.