Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dcbbed0

Browse files
committedMar 11, 2025·
lint
1 parent af44072 commit dcbbed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎services/data/postgres_async_db.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ async def get_filtered_task_pathspecs(self, flow_id: str, run_id: str, step_name
830830
}
831831
conditions = [f"{k} = %s" for k, v in filter_dict.items() if v is not None]
832832
values = [v for k, v in filter_dict.items() if v is not None]
833-
833+
834834
if field_name:
835835
conditions.append("field_name = %s")
836836
values.append(field_name)

0 commit comments

Comments
 (0)
Please sign in to comment.