Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changes

* Update ACCERT output name
([#120](https://github.com/watts-dev/watts/pull/120))

## [0.5.2]

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/watts/plugin_accert.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def total_cost(self) -> float:

@property
def account_table(self) -> pd.DataFrame:
account_file = self.base_path / 'ACCERT_updated_account.xlsx'
account_file = next(self.base_path.glob('*_updated_account.xlsx'), None)
if Path(account_file).exists():
return pd.read_excel(account_file)
else:
Expand Down