Skip to content

Commit

Permalink
Merge pull request #1233 from martinholmer/fix-simpletaxio-import
Browse files Browse the repository at this point in the history
Revise taxcalc imports in the simpletaxio.py file
  • Loading branch information
martinholmer authored Mar 9, 2017
2 parents f771360 + 6cd940e commit de70520
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion taxcalc/validation/taxsim/simpletaxio.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
CUR_PATH = os.path.abspath(os.path.dirname(__file__))
sys.path.append(os.path.join(CUR_PATH, '..', '..', '..'))
# pylint: disable=wrong-import-position,import-error
from taxcalc import Policy, Records, Calculator
from taxcalc.policy import Policy
from taxcalc.records import Records
from taxcalc.calculate import Calculator


class SimpleTaxIO(object):
Expand Down

0 comments on commit de70520

Please sign in to comment.