Skip to content

Commit

Permalink
fix: cast string to paths when adding a new path to the manager (close
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Apr 16, 2024
1 parent f8ead52 commit b35655f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.2.1
- fix: cast string to paths when adding a new path to the manager (#6)
0.2.0
- feat: allow to specify an output directory in the GUI (#3)
- feat: allow to select the pixel size in the GUI (#4)
Expand Down
2 changes: 1 addition & 1 deletion chipstream/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def current_index(self):
def add_path(self, path):
if not self.is_busy():
# Only append paths if we are currently not busy
self._path_in_list.append([path, "created"])
self._path_in_list.append([pathlib.Path(path), "created"])

def clear(self):
"""Clear all data"""
Expand Down

0 comments on commit b35655f

Please sign in to comment.