Skip to content

Commit

Permalink
Fix unterminated string literal error
Browse files Browse the repository at this point in the history
  • Loading branch information
BC-Chang committed Dec 4, 2024
1 parent ec2eb35 commit 76e86b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dpm_tools/metrics/_scalars.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ def histogram_statistics(*images: np.ndarray, plot_histogram: bool = False, nbin
print('Image statistics:')
print(f'\tShape: {stats["shape"]}')
print(f'\tData type: {stats["dtype"]}')
print(f'\tMin: {stats["min"]}, Max: {
stats["max"]}, Mean: {stats["mean"]}\n')
print(f'\tMin: {stats["min"]}, Max: \
{stats["max"]}, Mean: {stats["mean"]}\n')

img_stats.append(_hist_stats(image, nbins))

Expand Down

0 comments on commit 76e86b8

Please sign in to comment.