full codespell coverage

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-06-04 12:36:10 +02:00
parent 0bfcdabbbb
commit 5e99dee3c2
103 changed files with 264 additions and 254 deletions
@@ -131,7 +131,7 @@ class Resize(object):
# fit height
scale_width = scale_height
elif self.__resize_method == "minimal":
# scale as least as possbile
# scale as least as possible
if abs(1 - scale_width) < abs(1 - scale_height):
# fit width
scale_height = scale_width
@@ -209,7 +209,7 @@ class Resize(object):
class NormalizeImage(object):
"""Normlize image by given mean and std.
"""Normalize image by given mean and std.
"""
def __init__(self, mean, std):