s/real_secrets/secrets/g
authorScott Gasch <[email protected]>
Wed, 15 Jan 2020 23:11:58 +0000 (15:11 -0800)
committerScott Gasch <[email protected]>
Wed, 15 Jan 2020 23:11:58 +0000 (15:11 -0800)
retire.py

index 5f567aa96d933a637c86e7b577a5d9bea138fb62..17c4f5ae15264cc7d4b7d18e05af643b1350c89c 100755 (executable)
--- a/retire.py
+++ b/retire.py
@@ -8,7 +8,7 @@ from parameters import parameters
 from tax_brackets import tax_brackets
 from tax_collector import tax_collector
 import utils
-import real_secrets
+import secrets
 from money import money
 
 class simulation(object):
@@ -248,6 +248,6 @@ class simulation(object):
 
 # main
 params = parameters().with_default_values()
-accounts = real_secrets.accounts
+accounts = secrets.accounts
 s = simulation(params, accounts)
 s.run()