Skip to content

Commit c31cd1b

Browse files
committed
fix: #215 change message and remove unnecessary import
1 parent 32b5111 commit c31cd1b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

time_tracker_api/time_entries/time_entries_dao.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
add_project_info_to_time_entries,
88
add_activity_name_to_time_entries,
99
create_custom_query_from_str,
10-
add_user_email_to_time_entries,
1110
)
1211
from utils.time import (
1312
datetime_str,

time_tracker_api/time_entries/time_entries_namespace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def post(self):
260260
class LatestTimeEntries(Resource):
261261
@ns.doc('list_latest_time_entries')
262262
@ns.marshal_list_with(time_entry)
263-
@ns.response(HTTPStatus.NOT_FOUND, 'Time entry not found')
263+
@ns.response(HTTPStatus.NOT_FOUND, 'No time entries found')
264264
def get(self):
265265
"""List the latest time entries"""
266266

0 commit comments

Comments
 (0)