Skip to content

Commit 27bc012

Browse files
committed
reverted accidental formatting
1 parent 1ea75fd commit 27bc012

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

python/datafusion/user_defined.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -473,12 +473,10 @@ def udaf(*args: Any, **kwargs: Any): # noqa: D417, C901
473473
This class allows you to define an aggregate function that can be used in
474474
data aggregation or window function calls.
475475
476-
Usage:
477-
- As a function: ``udaf(accum, input_types, return_type, state_type,``
478-
``volatility, name)``.
479-
- As a decorator: ``@udaf(input_types, return_type, state_type,``
480-
``volatility, name)``.
481-
When using ``udaf`` as a decorator, do not pass ``accum`` explicitly.
476+
Usage:
477+
- As a function: ``udaf(accum, input_types, return_type, state_type, volatility, name)``.
478+
- As a decorator: ``@udaf(input_types, return_type, state_type, volatility, name)``.
479+
When using ``udaf`` as a decorator, do not pass ``accum`` explicitly.
482480
483481
Function example:
484482

0 commit comments

Comments
 (0)