We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ecfc6c9 + 430f30b commit cb2f79cCopy full SHA for cb2f79c
CHANGELOG.md
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
8
## [Unreleased]
9
10
+### Changes
11
+
12
+* Update ACCERT output name
13
+ ([#120](https://github.com/watts-dev/watts/pull/120))
14
15
## [0.5.2]
16
17
### Added
src/watts/plugin_accert.py
@@ -87,7 +87,7 @@ def total_cost(self) -> float:
87
88
@property
89
def account_table(self) -> pd.DataFrame:
90
- account_file = self.base_path / 'ACCERT_updated_account.xlsx'
+ account_file = next(self.base_path.glob('*_updated_account.xlsx'), None)
91
if Path(account_file).exists():
92
return pd.read_excel(account_file)
93
else:
0 commit comments