Skip to content

Commit ea8c711

Browse files
author
Matt Sokoloff
committed
format
1 parent fd040b8 commit ea8c711

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/data/annotation_types/geometry/test_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ def test_line():
1919
expected['coordinates'] = tuple([tuple([tuple(x) for x in points])])
2020
assert line.shapely.__geo_interface__ == expected
2121

22-
raster = line.raster(height=32, width=32, thickness = 1)
22+
raster = line.raster(height=32, width=32, thickness=1)
2323
assert (cv2.imread("tests/data/assets/line.png") == raster).all()

tests/data/annotation_types/geometry/test_point.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ def test_point():
1818
expected['coordinates'] = tuple(expected['coordinates'])
1919
assert point.shapely.__geo_interface__ == expected
2020

21-
raster = point.raster(height=32, width=32, thickness = 1)
21+
raster = point.raster(height=32, width=32, thickness=1)
2222
assert (cv2.imread("tests/data/assets/point.png") == raster).all()

0 commit comments

Comments
 (0)