Skip to content

Commit

Permalink
pairwise cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
baloola committed Dec 20, 2022
1 parent f732eb4 commit 9de13b3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion eoxserver/resources/coverages/registration/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ def get_time_offset_and_step(unit):


def pairwise(iterable):
# pairwise('ABCDEFG') --> AB BC CD DE EF FG
a, b = itertools.tee(iterable)
next(b, None)
return zip(a, b)
Expand Down

0 comments on commit 9de13b3

Please sign in to comment.