From e9795a945beb6c47d664c3a3e11614e87fa0242b Mon Sep 17 00:00:00 2001 From: Chris Lenk Date: Fri, 6 Dec 2019 09:40:27 -0500 Subject: [PATCH] Fix long line --- stix2/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stix2/core.py b/stix2/core.py index 8fae3ef..aa9044d 100644 --- a/stix2/core.py +++ b/stix2/core.py @@ -166,7 +166,8 @@ def parse_observable(data, _valid_refs=None, allow_custom=False, version=None): # flag allows for unknown custom objects too, but will not # be parsed into STIX observable object, just returned as is return obj - raise ParseError("Can't parse unknown observable type '%s'! For custom observables, " "use the CustomObservable decorator." % obj['type']) + raise ParseError("Can't parse unknown observable type '%s'! For custom observables, " + "use the CustomObservable decorator." % obj['type']) return obj_class(allow_custom=allow_custom, **obj)