Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
fix: #215 change message and remove unnecessary import
  • Loading branch information
PaulRC-ioet committed Nov 16, 2020
commit c31cd1b453929c55bd48c6e425f96dbea653a97f
1 change: 0 additions & 1 deletion time_tracker_api/time_entries/time_entries_dao.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
add_project_info_to_time_entries,
add_activity_name_to_time_entries,
create_custom_query_from_str,
add_user_email_to_time_entries,
)
from utils.time import (
datetime_str,
Expand Down
2 changes: 1 addition & 1 deletion time_tracker_api/time_entries/time_entries_namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def post(self):
class LatestTimeEntries(Resource):
@ns.doc('list_latest_time_entries')
@ns.marshal_list_with(time_entry)
@ns.response(HTTPStatus.NOT_FOUND, 'Time entry not found')
@ns.response(HTTPStatus.NOT_FOUND, 'No time entries found')
def get(self):
"""List the latest time entries"""

Expand Down