From 12ada44a63bfc5bbcab1687e81602223c7cecebe Mon Sep 17 00:00:00 2001 From: Ming Fang Date: Tue, 24 Sep 2024 17:10:24 -0400 Subject: [PATCH] Add trailing comma expected by the pre-commit hook. --- stix2/test/v21/test_markings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stix2/test/v21/test_markings.py b/stix2/test/v21/test_markings.py index 4792549..0b2e950 100644 --- a/stix2/test/v21/test_markings.py +++ b/stix2/test/v21/test_markings.py @@ -175,7 +175,7 @@ def test_granular_marking_mutual_exclusion_error(): stix2.v21.GranularMarking( lang="en", marking_ref=stix2.TLP_GREEN, - selectors=["foo"] + selectors=["foo"], ) assert excinfo.value.cls == stix2.v21.GranularMarking assert excinfo.value.properties == ["lang", "marking_ref"]