Skip to content

Commit 1a3b073

Browse files
committed
FIX: line length
1 parent 6aa544e commit 1a3b073

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

botcity/web/bot.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,8 @@ def get_element_coords(self, label, x=None, y=None, width=None, height=None, mat
765765
print('Warning: Ignoring best=False for now. It will be supported in the future.')
766766

767767
haystack = self.get_screen_image()
768-
it = cv2find.locate_all_opencv(self.state.map_images[label], haystack_image=haystack, region=region, confidence=matching)
768+
it = cv2find.locate_all_opencv(self.state.map_images[label], haystack_image=haystack,
769+
region=region, confidence=matching)
769770
try:
770771
ele = next(it)
771772
except StopIteration:

0 commit comments

Comments
 (0)