style: format code with dotnet-format

This commit fixes the style issues introduced in 0bc4185 according to the output
from dotnet-format.

Details: https://github.com/mihakralj/QuanTAlib/pull/32
This commit is contained in:
deepsource-autofix[bot]
2024-10-08 21:00:48 +00:00
committed by GitHub
parent 0bc41854aa
commit 47862d8682
+1 -1
View File
@@ -83,7 +83,7 @@ public class Rma : AbstractBase
else
{
// Wilder's smoothing method
rma = _alpha * (_lastRma - Input.Value) + _lastRma;
rma = _alpha * (_lastRma - Input.Value) + _lastRma;
}
_lastRma = rma;