Skip to content

Commit c0cedc5

Browse files
committed
Fix unpacking of custom entities in CaseBuilderWindow to ignore unused variable
1 parent 4aaae47 commit c0cedc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/case_builder_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def save_case(self):
208208
case_data["fields"].append({"label": label, "value": text})
209209

210210
# Save custom entities
211-
for name_edit, value_edit, _ in current_tab.custom_entities:
211+
for name_edit, value_edit, *_ in current_tab.custom_entities:
212212
name = name_edit.text()
213213
value = value_edit.text()
214214
if name and value:

0 commit comments

Comments
 (0)