Skip to content

Commit

Permalink
automated style enforcement ...
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Oct 22, 2022
1 parent d51c5f9 commit b5bd38e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion caldav/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,9 @@ def _complete_recurring_thisandfuture(self, completion_timestamp):
if count is not None and count[0] <= len(
[x for x in recurrences if not self._is_pending(x)]
):
self._complete_ical(recurrences[0], completion_timestamp=completion_timestamp)
self._complete_ical(
recurrences[0], completion_timestamp=completion_timestamp
)
self.save(increase_seqno=False)
return

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=False,
install_requires=["vobject", "lxml", "requests", "six", "icalendar"] + extra_packages,
install_requires=["vobject", "lxml", "requests", "six", "icalendar"]
+ extra_packages,
tests_require=test_packages + extra_test_packages,
extras_require={
"test": test_packages,
Expand Down

0 comments on commit b5bd38e

Please sign in to comment.