Skip to content

Commit 41b2886

Browse files
committed
Fix incorrect lint fix
1 parent 00603a9 commit 41b2886

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firome/codecs/fit/parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def _ts_ok(prev, curr, nxt):
107107
if (curr > nxt) and (nxt >= prev):
108108
return False
109109

110-
return (curr - prev).days < 0
110+
return (curr - prev).days == 0
111111

112112

113113
def _fix_ts(current: datetime, normal_previous: datetime, next_ts: datetime) -> datetime:

0 commit comments

Comments
 (0)