From 2467d2418859c440a4f67290140e98931a785765 Mon Sep 17 00:00:00 2001 From: Eduardo Rios Date: Thu, 13 Aug 2026 11:37:13 -0300 Subject: [PATCH] style: fix ruff formatting in test_mongo_db.py Co-Authored-By: Claude Sonnet 5 --- tests/orchestrator/activities/test_mongo_db.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/orchestrator/activities/test_mongo_db.py b/tests/orchestrator/activities/test_mongo_db.py index 4083ce9..4e55f12 100644 --- a/tests/orchestrator/activities/test_mongo_db.py +++ b/tests/orchestrator/activities/test_mongo_db.py @@ -532,7 +532,11 @@ def test_load_latest_data_run_boundary_no_skip_or_duplicate(mongo_db): def fake_find(collection_name, data_filter, metadata): gt = data_filter.get('timestamp', {}).get('$gt') all_docs = [ - {'name': 'before', 'value': 1, 'timestamp': datetime(2023, 1, 1, 11, 59, 59, tzinfo=UTC)}, + { + 'name': 'before', + 'value': 1, + 'timestamp': datetime(2023, 1, 1, 11, 59, 59, tzinfo=UTC), + }, {'name': 'boundary', 'value': 2, 'timestamp': boundary_timestamp}, {'name': 'after', 'value': 3, 'timestamp': datetime(2023, 1, 1, 12, 0, 1, tzinfo=UTC)}, ]