Skip to content

Commit

Permalink
Update _wt5.py (#1172)
Browse files Browse the repository at this point in the history
* Update _wt5.py

fixes bug where data does not load interactively when directory is not equal to cwd.

* Update CHANGELOG.md
  • Loading branch information
ddkohler authored Mar 20, 2024
1 parent e822e33 commit eb5293e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

## [Unreleased]

## Changed
- artists now gets turbo colormap straight from matplotlib
=======
### Fixed
- wt5 explore : fixed bug where data will not load interactively if directory is not cwd
- constants in chopped data will inherit the units of the original data

## Changed
- artists now gets turbo colormap straight from matplotlib

## [3.5.2]

### Added
Expand Down
2 changes: 1 addition & 1 deletion WrightTools/cli/_wt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def raise_sys_exit():
break
if valid:
print("interacting...")
_interact(shell, str(paths[int(msg)]))
_interact(shell, str(directory / paths[int(msg)]))
continue


Expand Down

0 comments on commit eb5293e

Please sign in to comment.