Skip to content

Commit f33b391

Browse files
committed
Removed commented code
1 parent 4839804 commit f33b391

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/test_transforms.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,14 +1311,11 @@ def test_rotate_fill(self):
13111311

13121312
def test_affine(self):
13131313
input_img = np.zeros((40, 40, 3), dtype=np.uint8)
1314-
# pts = []
13151314
cnt = [20, 20]
13161315
for pt in [(16, 16), (20, 16), (20, 20)]:
13171316
for i in range(-5, 5):
13181317
for j in range(-5, 5):
13191318
input_img[pt[0] + i, pt[1] + j, :] = [255, 155, 55]
1320-
# pts.append((pt[0] + i, pt[1] + j))
1321-
# pts = list(set(pts))
13221319

13231320
with self.assertRaises(TypeError, msg="Argument translate should be a sequence"):
13241321
F.affine(input_img, 10, translate=0, scale=1, shear=1)

0 commit comments

Comments
 (0)