diff options
author | xengineering <me@xengineering.eu> | 2024-09-08 11:12:00 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-09-08 17:21:32 +0200 |
commit | 51e67cebb905e7831e3a2d9f706a6d756d69fa71 (patch) | |
tree | 28624e1e835b7d5e99393af6398930aeadbd213f | |
parent | 8bf63bc6bb62f2cc2d52ae7e09424c308ff08362 (diff) | |
download | finance-py-51e67cebb905e7831e3a2d9f706a6d756d69fa71.tar finance-py-51e67cebb905e7831e3a2d9f706a6d756d69fa71.tar.zst finance-py-51e67cebb905e7831e3a2d9f706a6d756d69fa71.zip |
Add second flow to demo
This makes the output less trivial.
-rwxr-xr-x | demo | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -17,6 +17,11 @@ def main() -> None: flows = ( Flow(amount=Decimal(100.0), since=None, until=None), + Flow( + amount=Decimal(200.0), + since=datetime(2026, 1, 1), + until=datetime(2027, 1, 1), + ), ) data = simulate( |