Skip to content
This repository was archived by the owner on Apr 6, 2025. It is now read-only.

Commit 36ee9d4

Browse files
committed
Remove python 3.8 print syntax (breaks deploy)
1 parent beeecb2 commit 36ee9d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quickanalysis/analysis/histogram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def get_histogram(arr, bin_size=None, clip_percent=None, bitpix=16, exclude_zero
4545
# Default range should include the whole image
4646
low_val = np.min(arr)
4747
high_val = np.max(arr)
48-
print(f"{low_val=}, {high_val=}")
48+
print(f"low val: {low_val}, high val: {high_val}")
4949

5050
# Or use percentage clipping to determine the range (if clip_percent is specified)
5151
if clip_percent is not None:

0 commit comments

Comments
 (0)