Skip to content
Snippets Groups Projects
Commit 6bfd77dd authored by Arin Wongprommoon's avatar Arin Wongprommoon
Browse files

style(core): Linting with Black

parent ddfc2316
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,10 @@ class catch22(PostProcessABC): ...@@ -36,7 +36,10 @@ class catch22(PostProcessABC):
else signal.shape[1] * self.min_len else signal.shape[1] * self.min_len
) )
adf = signal.loc[signal.notna().sum(axis=1) > thresh] adf = signal.loc[signal.notna().sum(axis=1) > thresh]
catches = [catch22_all(adf.iloc[i, :].dropna().values) for i in range(len(adf))] catches = [
catch22_all(adf.iloc[i, :].dropna().values)
for i in range(len(adf))
]
norm = pd.DataFrame( norm = pd.DataFrame(
[catches[j]["values"] for j in range(len(catches))], [catches[j]["values"] for j in range(len(catches))],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment