Remove unnecessary output

This commit is contained in:
sqozz 2021-10-07 12:05:00 +02:00
parent 539f9dcb38
commit ca43be7db3
1 changed files with 1 additions and 2 deletions

View File

@ -97,7 +97,6 @@ for trash_type in trash_types:
ical_path = os.path.join(trash_type_folder, ical_name) ical_path = os.path.join(trash_type_folder, ical_name)
with open(ical_path, "wb") as single_file: with open(ical_path, "wb") as single_file:
single_file.write(new_cal.to_ical()) single_file.write(new_cal.to_ical())
else: else:
print("Skipping type {}".format(type(event))) pass