Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion contrib/bulk_edit/timetagger_bulk_edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"""

import argparse
import binascii
import datetime
from itemdb import ItemDB
import json
Expand Down Expand Up @@ -286,7 +287,7 @@ def get_unix_timestamp_from_string(time_string, end_of_day_on_missing_time=False
hour=23, minute=59, second=59, microsecond=999999
)
return int(dt.timestamp())
except ValueError as e:
except ValueError:
return time_string

def delete_records_in_range(self, from_unix_timestamp, to_unix_timestamp):
Expand Down