From fa981affa9b27842f343434d3d77971a421d90a8 Mon Sep 17 00:00:00 2001 From: Michael Chisholm Date: Tue, 2 Jun 2020 17:52:52 -0400 Subject: [PATCH] stupid python 3.8 pre-commit still not adding the right trailing commas.... --- stix2/test/v21/test_deterministic_ids.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stix2/test/v21/test_deterministic_ids.py b/stix2/test/v21/test_deterministic_ids.py index 6eab1c8..1140de7 100644 --- a/stix2/test/v21/test_deterministic_ids.py +++ b/stix2/test/v21/test_deterministic_ids.py @@ -48,7 +48,7 @@ def test_no_contrib_props_defined(): ( 'extensions', ExtensionsProperty( spec_version='2.1', enclosing_type=_type, - ) + ), ), )) _id_contributing_properties = [] @@ -70,7 +70,7 @@ def test_no_contrib_props_given(): ( 'extensions', ExtensionsProperty( spec_version='2.1', enclosing_type=_type, - ) + ), ), ('value', StringProperty()), )) @@ -92,7 +92,7 @@ def test_json_compatible_prop_values(): ( 'extensions', ExtensionsProperty( spec_version='2.1', enclosing_type=_type, - ) + ), ), ('string', StringProperty()), ('int', IntegerProperty()), @@ -132,7 +132,7 @@ def test_json_incompatible_timestamp_value(): ( 'extensions', ExtensionsProperty( spec_version='2.1', enclosing_type=_type, - ) + ), ), ('timestamp', TimestampProperty()), ))