projects
/
retire.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
654fb1e
)
s/real_secrets/secrets/g
author
Scott Gasch
<
[email protected]
>
Wed, 15 Jan 2020 23:11:58 +0000
(15:11 -0800)
committer
Scott Gasch
<
[email protected]
>
Wed, 15 Jan 2020 23:11:58 +0000
(15:11 -0800)
retire.py
patch
|
blob
|
history
diff --git
a/retire.py
b/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()