We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d9246b commit b7ca73eCopy full SHA for b7ca73e
1 file changed
pymeos/collections/time/datespan.py
@@ -471,9 +471,7 @@ def distance(self, other: TimeDate) -> timedelta:
471
elif isinstance(other, DateSet):
472
return self.distance(other.to_spanset())
473
elif isinstance(other, DateSpan):
474
- return timedelta(
475
- days=distance_datespan_datespan(self._inner, other._inner)
476
- )
+ return timedelta(days=distance_datespan_datespan(self._inner, other._inner))
477
elif isinstance(other, DateSpanSet):
478
return timedelta(
479
days=distance_datespanset_datespan(self._inner, other._inner)
0 commit comments