Skip to content

Commit

Permalink
Merge pull request #485 from cagov/remove-trailing-whitespace
Browse files Browse the repository at this point in the history
Remove trailing whitespace to fix pre-commit ci
  • Loading branch information
ian-r-rose authored Nov 22, 2024
2 parents 296acd9 + 1914810 commit 694e8c7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ unimputed as (
base.station_valid_from,
base.station_valid_to,
-- If the detector_id in the join is not null, it means that the detector
-- is considered to be "good" for a given date.
-- is considered to be "good" for a given date.
(good_detectors.detector_id is not null) as detector_is_good,
coalesce(base.speed_weighted, (base.volume_sum * 22) / nullifzero(base.occupancy_avg) * (1 / 5280) * 12)
as speed_five_mins
Expand Down Expand Up @@ -192,7 +192,7 @@ samples_requiring_imputation_with_local_regional_coeffs as (
asof join local_regional_coeffs
match_condition (samples.sample_date >= local_regional_coeffs.regression_date)
on
samples.detector_id = local_regional_coeffs.detector_id
samples.detector_id = local_regional_coeffs.detector_id
and samples.district = local_regional_coeffs.district
),

Expand Down Expand Up @@ -260,7 +260,7 @@ samples_requiring_imputation_with_global_coeffs as (
asof join global_coeffs
match_condition (samples_requiring_imputation.sample_date >= global_coeffs.regression_date)
on
samples_requiring_imputation.detector_id = global_coeffs.detector_id
samples_requiring_imputation.detector_id = global_coeffs.detector_id
and samples_requiring_imputation.district = global_coeffs.district
),

Expand Down

0 comments on commit 694e8c7

Please sign in to comment.