Skip to content

Commit 5485295

Browse files
authored
Update src/anomalib/data/transforms/center_crop.py
1 parent fc473fe commit 5485295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/anomalib/data/transforms/center_crop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class ExportableCenterCrop(Transform):
7878
size (int | tuple[int, int]): Desired output size of the crop.
7979
"""
8080

81-
def __init__(self, size: int | Sequence[int, int]) -> None:
81+
def __init__(self, size: int | Sequence[int]) -> None:
8282
super().__init__()
8383
self.size = list(size) if isinstance(size, Sequence) else [size, size]
8484

0 commit comments

Comments
 (0)