Skip to content
Snippets Groups Projects
Commit 5e46fb88 authored by Jameson Rollins's avatar Jameson Rollins
Browse files

Merge branch 'mr-type-fixes' into 'main'

type fixes

See merge request !118
parents 8be6e430 995c749e
No related branches found
No related tags found
1 merge request!118type fixes
Pipeline #712757 passed
......@@ -51,7 +51,7 @@ class DumpSeriesSink(TSSink):
endpoint=False,
)
out = np.vstack([ts, data]).T
with open(self.fname, "a") as f:
with open(self.fname, "ab") as f:
np.savetxt(f, out)
def internal(self) -> None:
......
......@@ -5,6 +5,7 @@ import pytest
import scipy.signal.windows
from sgn import CollectSink, IterSource, Pipeline
from sgn import Frame
from sgnts import filtertools
from sgnts.base import (
AdapterConfig,
......@@ -36,6 +37,8 @@ class IsGapCollectSink(CollectSink):
Returns:
"""
self.inputs: dict[str, Frame]
for pad_name, frame in self.inputs.items():
if not frame.is_gap:
......
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