From bdec14937d1c67cff0e70b24d15dda95c1caad55 Mon Sep 17 00:00:00 2001 From: Liam Sennitt Date: Tue, 12 Jun 2018 17:45:48 +0100 Subject: [PATCH] fix flake8 errors in new test --- stix2/test/test_custom.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stix2/test/test_custom.py b/stix2/test/test_custom.py index 68a9e50..6fb24d2 100644 --- a/stix2/test/test_custom.py +++ b/stix2/test/test_custom.py @@ -884,6 +884,9 @@ def test_custom_object_nested_dictionary(data): def __init__(self, **kwargs): pass - example = Example(id='x-example--336d8a9f-91f1-46c5-b142-6441bb9f8b8d', created='2018-06-12T16:20:58.059Z', modified='2018-06-12T16:20:58.059Z', dictionary={'key':{'key_b':'value', 'key_a':'value'}}) + example = Example(id='x-example--336d8a9f-91f1-46c5-b142-6441bb9f8b8d', + created='2018-06-12T16:20:58.059Z', + modified='2018-06-12T16:20:58.059Z', + dictionary={'key': {'key_b': 'value', 'key_a': 'value'}}) assert data == str(example)