mirror of
https://github.com/webclinic017/drift.git
synced 2026-08-15 11:58:07 +00:00
chore(Linter): reformatted code with black (#211)
* chore(Linter): reformatted code with black * Create black.yaml
This commit is contained in:
@@ -2,10 +2,11 @@ import pandas as pd
|
||||
import numpy as np
|
||||
from scipy.stats import shapiro
|
||||
|
||||
|
||||
def get_close_low_high(df: pd.DataFrame) -> tuple[pd.Series, pd.Series, pd.Series]:
|
||||
close = df['close']
|
||||
low = df['low']
|
||||
high = df['high']
|
||||
close = df["close"]
|
||||
low = df["low"]
|
||||
high = df["high"]
|
||||
return close, low, high
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user