Skip to content

Commit

Permalink
fix: remove unnecessary print-calls
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jul 2, 2024
1 parent b88553c commit 5c6c089
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.7.2
- fix: remove unnecessary print-calls
0.7.1
- build: fix macOS pipeline
0.7.0
Expand Down
1 change: 0 additions & 1 deletion mpl_data_cast/gui/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def on_settings_ok(self):
value = int(widget.value())
else:
raise NotImplementedError("No rule for '{}'".format(key))
print(key, value)
self.settings.setValue(key, value)

# reload UI to give visual feedback
Expand Down
1 change: 0 additions & 1 deletion mpl_data_cast/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ def cleanup_tmp_dirs():
# process. If the process does not exist anymore, we
# may delete it.
pid = int(pp.name.split("-")[1])
print(pp, pid, psutil.pid_exists(pid))
if not psutil.pid_exists(pid):
shutil.rmtree(pp, ignore_errors=True)
except BaseException:
Expand Down
1 change: 0 additions & 1 deletion mpl_data_cast/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def copyhashfile(path_in: str | pathlib.Path,
try:
with path_in.open('rb') as fd, path_out.open("wb") as fo:
while buf := fd.read(blocksize):
print(len(buf))
hasher.update(buf)
fo.write(buf)
except BaseException:
Expand Down

0 comments on commit 5c6c089

Please sign in to comment.