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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and the versioning aims to respect [Semantic Versioning](http://semver.org/spec/
### Added

### Changed
- Fix broken `Mastr.to_csv` function by removing stray `**kwargs`
[#736](https://github.com/OpenEnergyPlatform/open-MaStR/pull/736)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion open_mastr/mastr.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def to_csv(

# Validate and parse tables parameter
validate_parameter_data(method="csv_export", data=tables)
data = transform_data_parameter(tables, **kwargs)
data = transform_data_parameter(tables)

# Determine tables to export
technologies_to_export = []
Expand Down
Loading