Skip to content

Commit

Permalink
Modify miss reference code of weekday method of series (#1353)
Browse files Browse the repository at this point in the history
Signed-off-by: root <seungfwani@gmail.com>
  • Loading branch information
fwani committed Sep 14, 2021
1 parent 62fd456 commit 5c21279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/eager/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -2876,7 +2876,7 @@ def weekday(self) -> Series:
-------
Week day as UInt32
"""
return wrap_s(self._s.week())
return wrap_s(self._s.weekday())

def day(self) -> Series:
"""
Expand Down

0 comments on commit 5c21279

Please sign in to comment.