Skip to content

Commit f99c87c

Browse files
committed
Fix spacing
1 parent 5ca9fb1 commit f99c87c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ Indicators that help to determine the direction of the market (uptrend, downtren
4848
Moving average that gives more weight to recent data points by applying a weighting factor to the data points.
4949

5050
```python
51-
def wma(data: Union[PandasDataFrame, PolarsDataFrame], source_column: str, period: int, result_column: Optional[str] = None) -> Union[PandasDataFrame, PolarsDataFrame]
51+
def wma(
52+
data: Union[PandasDataFrame, PolarsDataFrame],
53+
source_column: str,
54+
period: int,
55+
result_column: Optional[str] = None
56+
) -> Union[PandasDataFrame, PolarsDataFrame]
5257
```
5358

5459
```python

0 commit comments

Comments
 (0)