Vertical whitespace for readability

This commit is contained in:
XANTRONIX 2025-03-14 10:33:17 -04:00
parent 3b5f7b1f3f
commit 00828ce417

View file

@ -25,7 +25,10 @@ class Series(dict):
return nearest(sorted(self.keys(), reverse=True),
sorted(series.keys(), reverse=True))
def intersect(self, series: Self, intersection: SeriesIntersection, start: float=None) -> tuple[float]:
def intersect(self,
series: Self,
intersection: SeriesIntersection,
start: float=None) -> tuple[float]:
pairs = self.neighbors(series)
for pair in pairs: