Skip to content

Commit

Permalink
fix: setting None path (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jan 19, 2024
1 parent a3399d5 commit 44487d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion chipstream/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ def run_all_in_thread(self,
self._worker.start()

def set_output_path(self, path_out):
self._path_out = pathlib.Path(path_out)
if path_out is not None:
path_out = pathlib.Path(path_out)
self._path_out = path_out


class ErrorredRunner:
Expand Down

0 comments on commit 44487d7

Please sign in to comment.