Skip to content

Commit e6cf418

Browse files
authored
Add TheAlgorithms#1976 to get Travis CI to pass
TheAlgorithms#1976
1 parent f6e0143 commit e6cf418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

digital_image_processing/resize/resize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class NearestNeighbour:
1111

1212
def __init__(self, img, dst_width: int, dst_height: int):
1313
if dst_width < 0 or dst_height < 0:
14-
raise ValueError(f"Destination width/height should be > 0")
14+
raise ValueError("Destination width/height should be > 0")
1515

1616
self.img = img
1717
self.src_w = img.shape[1]

0 commit comments

Comments
 (0)