We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e0143 commit e6cf418Copy full SHA for e6cf418
digital_image_processing/resize/resize.py
@@ -11,7 +11,7 @@ class NearestNeighbour:
11
12
def __init__(self, img, dst_width: int, dst_height: int):
13
if dst_width < 0 or dst_height < 0:
14
- raise ValueError(f"Destination width/height should be > 0")
+ raise ValueError("Destination width/height should be > 0")
15
16
self.img = img
17
self.src_w = img.shape[1]
0 commit comments