Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit c993740

Browse files
committed
Fix optional check_settings
1 parent 8f8d8e0 commit c993740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eyes_core/applitools/core/match_window_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def perform_match(
167167
image_match_settings, regions, region_selectors
168168
)
169169

170-
if check_settings.values.match_level is not None:
170+
if check_settings and check_settings.values.match_level is not None:
171171
image_match_settings.match_level = check_settings.values.match_level
172172

173173
user_inputs = user_inputs or []

0 commit comments

Comments
 (0)