Skip to content

Commit

Permalink
Convert verbose (#996)
Browse files Browse the repository at this point in the history
* (closes #995)

* Update CHANGELOG.md

* silence verbose in convert

* Update CHANGELOG.md
  • Loading branch information
darienmorrow committed Mar 17, 2021
1 parent b183e01 commit 2cbb2ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
- Collection.convert method for converting all units of a single kind of a collection's data to another unit (with test script)

### Fixed
- Absence of verbose kwarg propogation in data.split, silenced convert call.
- Further handling for readonly files
- Improved chopping with axes that span the kept axes removed
- Timezone offset for `wt.kit.TimeStamp.RFC3339`
Expand Down
2 changes: 1 addition & 1 deletion WrightTools/data/_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1672,7 +1672,7 @@ def split(

self.transform(expression)
if units:
self.convert(units)
self.convert(units, verbose=False)

try:
positions = [-np.inf] + sorted(list(positions)) + [np.inf]
Expand Down

0 comments on commit 2cbb2ee

Please sign in to comment.