Skip to content

Commit

Permalink
Checkstyle for python
Browse files Browse the repository at this point in the history
  • Loading branch information
snuyanzin committed Mar 14, 2024
1 parent 8c00c2c commit 0d14532
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions flink-python/pyflink/table/expression.py
Original file line number Diff line number Diff line change
Expand Up @@ -784,8 +784,9 @@ def max(self) -> 'Expression':
def mode(self) -> 'Expression':
"""
Returns the most frequent value in a group of values.
If there are multiple values that appear the same number of times, one of them will be returned.
NULL values are ignored. If there is no non-null value, the function returns NULL.
If there are multiple values that appear the same number of times,
one of them will be returned. NULL values are ignored.
If there is no non-null value, the function returns NULL.
"""
return _unary_op("mode")(self)

Expand Down

0 comments on commit 0d14532

Please sign in to comment.