Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
prasmussen15 committed Aug 23, 2024
1 parent ac18d4c commit c6e7938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils/search/search_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async def edge_similarity_search(
name=record['name'],
episodes=record['episodes'],
fact_embedding=record['fact_embedding'],
created_at=safely_parse_db_date(record['created_at']) or datetime.now(),
created_at=record['created_at'],
expired_at=safely_parse_db_date(record['expired_at']),
valid_at=safely_parse_db_date(record['valid_at']),
invalid_at=safely_parse_db_date(record['invalid_at']),
Expand Down

0 comments on commit c6e7938

Please sign in to comment.