From 5965c02262c32acdb71f1d5fc882d6b0df40ea85 Mon Sep 17 00:00:00 2001 From: Carl Cervone Date: Tue, 3 Dec 2024 13:48:45 -0500 Subject: [PATCH] fix: linting error --- .../intermediate/funding/int_gitcoin_funding_rounds.sql | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/warehouse/dbt/models/intermediate/funding/int_gitcoin_funding_rounds.sql b/warehouse/dbt/models/intermediate/funding/int_gitcoin_funding_rounds.sql index a07833d7e..14ab64a33 100644 --- a/warehouse/dbt/models/intermediate/funding/int_gitcoin_funding_rounds.sql +++ b/warehouse/dbt/models/intermediate/funding/int_gitcoin_funding_rounds.sql @@ -29,9 +29,14 @@ select sum(amount_in_usd) as total_amount_in_usd, count(distinct gitcoin_project_id) as count_projects from unioned -group by 1, 2, 3, 4, 5, 6 +group by + gitcoin_data_source, + gitcoin_round_id, + round_number, + round_name, + round_type, + main_round_label order by round_type asc, main_round_label desc, gitcoin_round_id asc -_oss \ No newline at end of file