Skip to content

Commit

Permalink
Fix Linting Error
Browse files Browse the repository at this point in the history
This patch fixes a minor linting error due to an update of flake8.
  • Loading branch information
lkiesow committed Aug 2, 2022
1 parent 5e1df89 commit c5a81dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyca/schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def parse_ical(vcal):
'''
vcal = vcal.replace('\r\n ', '').replace('\r\n\r\n', '\r\n')
vevents = vcal.split('\r\nBEGIN:VEVENT\r\n')
del(vevents[0])
del vevents[0]
events = []
for vevent in vevents:
event = {}
Expand Down

0 comments on commit c5a81dd

Please sign in to comment.