Skip to content

Commit

Permalink
particularly crass VAT hack
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamstark committed Sep 1, 2023
1 parent 50e0d0d commit e6d3bf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ConsumptionData.jl
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function uprate_expenditure( settings :: Settings )
elseif sym in DEFAULT_STANDARD_RATE
f[sym] /= 1.20
end
f[sym] = Uprating.uprate( f[sym], y, q, Uprating.upr_nominal_gdp )
f[sym] = Uprating.uprate( f[sym], y, q, Uprating.upr_nominal_gdp ) * EVIL_VAT_HACK
end
end
end
Expand All @@ -236,7 +236,7 @@ function init( settings :: Settings; reset = false )
EXPENDITURE_DATASET = CSV.File("$(settings.data_dir)/$(settings.expenditure_dataset).tab" ) |> DataFrame
FACTOR_COST_DATASET = CSV.File("$(settings.data_dir)/$(settings.expenditure_dataset).tab" ) |> DataFrame
println( EXPENDITURE_DATASET[1:2,:])
uprate_expenditure( settings )
uprate_expenditure( settings )
end
end

Expand Down

0 comments on commit e6d3bf3

Please sign in to comment.