Skip to content

Commit

Permalink
doc(minor): needs_update help page
Browse files Browse the repository at this point in the history
  • Loading branch information
redstreet committed Sep 10, 2023
1 parent 90e6ea2 commit a1298a2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,5 +173,13 @@ or on [The Five Minute Ledger Update](https://reds-rants.netlify.app/personal-fi
site. For bugs, open an issue here on Github.

## Contributions
Contributions welcome. New importers for institutions and test input files appreciated.
Sharing importers helps the community.

Features, fixes, and improvements welcome. New importers for institutions with test
input files appreciated. Sharing importers helps the community! Remember:
- Feel free to send send pull requests. Please include unit tests
- For larger changes or changes that might need discussion, please reach out and discuss
first to save time (open an issue)
- Please squash your commits (reasonably)
- Use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) for commit messages

Thank you for contributing!
2 changes: 1 addition & 1 deletion beancount_reds_importers/util/needs_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def pretty_print_table(not_updated_accounts, sort_by_date):

@click.command("needs-update", context_settings={'show_default': True})
@click.argument('beancount-file', type=click.Path(exists=True), envvar='BEANCOUNT_FILE')
@click.option('--recency', help='How many days back to look for balance assertions', default=15)
@click.option('--recency', help='How many days ago should the last balance assertion be to be considered old', default=15)
@click.option('--sort-by-date', help='Sort output by date (instead of account name)', is_flag=True)
@click.option('--all-accounts', help='Show all account (ignore include/exclude in config)', is_flag=True)
def accounts_needing_updates(beancount_file, recency, sort_by_date, all_accounts):
Expand Down

0 comments on commit a1298a2

Please sign in to comment.