Skip to content

Commit

Permalink
Fixed pylint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
shantanu73 committed Feb 26, 2024
1 parent e76e80c commit 12ed5db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tap_stripe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1055,8 +1055,7 @@ def sync_event_updates(stream_name, is_sub_stream):
sync_sub_stream(sub_stream_name,
event_resource_obj,
updates=True)
if events_obj.created > max_created:
max_created = events_obj.created
max_created = max(events_obj.created, max_created)

# The events stream returns results in descending order, so we
# cannot bookmark until the entire page is processed
Expand Down

0 comments on commit 12ed5db

Please sign in to comment.