Skip to content

Commit

Permalink
Reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
HichTala committed Nov 28, 2024
1 parent eaed96f commit ac4522e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ def test_image_processor_from_dict_with_kwargs(self):
self.assertEqual(image_processor.do_pad, True)

image_processor = image_processing_class.from_dict(
self.image_processor_dict, size={"shortest_edge": 42, "longest_edge": 84}, pad_and_return_pixel_mask=False
self.image_processor_dict,
size={"shortest_edge": 42, "longest_edge": 84},
pad_and_return_pixel_mask=False,
)
self.assertEqual(image_processor.size, {"shortest_edge": 42, "longest_edge": 84})
self.assertEqual(image_processor.do_pad, False)
Expand Down

0 comments on commit ac4522e

Please sign in to comment.