Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
neb417 committed Nov 6, 2023
1 parent ba2e594 commit db46932
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/poros/income_tax_calculator.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
class IncomeTaxCalculator
attr_reader :income,
:annual_income,
:federal_tax,
:net_after_fed_tax,
:state_tax,
:total_net_income,
:bi_weekly_net_income
:annual_income,
:federal_tax,
:net_after_fed_tax,
:state_tax,
:total_net_income,
:bi_weekly_net_income

def initialize(income:)
@income = income
Expand All @@ -14,7 +14,7 @@ def initialize(income:)
@net_after_fed_tax = nil
@state_tax = nil
@total_net_income = nil
@bi_weekly_net_income = nil
@bi_weekly_net_income = nil
end

def calculate_taxes
Expand Down Expand Up @@ -49,4 +49,4 @@ def calculate_total_net_income
def calculate_bi_weekly_income
Money.new(@total_net_income.fractional / 26)
end
end
end

0 comments on commit db46932

Please sign in to comment.