Skip to content

Commit 6db4a92

Browse files
authored
Ignore _legend attribute access
1 parent 0b472c2 commit 6db4a92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mitreattack/diffStix/changelog_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def load_data(self):
306306
new_lines_unique = [line for line in new_lines if line not in old_lines]
307307
if old_lines_unique or new_lines_unique:
308308
html_diff = difflib.HtmlDiff(wrapcolumn=60)
309-
html_diff._legend = ""
309+
html_diff._legend = "" # type: ignore[attr-defined]
310310
delta = html_diff.make_table(old_lines, new_lines, "Old Description", "New Description")
311311
new_stix_obj["description_change_table"] = delta
312312

0 commit comments

Comments
 (0)