From adebd3c3bd73200fccc6620ce61294e61a74bee8 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 3 Jan 2021 18:29:12 +0000 Subject: [PATCH] Remove check --- pyjsonld.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pyjsonld.py b/pyjsonld.py index 5f31ca0e5..bb3213624 100644 --- a/pyjsonld.py +++ b/pyjsonld.py @@ -1016,13 +1016,6 @@ class JsonLdProcessor(object): 'Could not convert input to RDF dataset before normalization.', 'jsonld.NormalizeError', cause=cause) - # check that the data is not empty - if '@default' in dataset: - if not dataset['@default']: - raise JsonLdError( - 'Could not convert input to RDF dataset.', - 'jsonld.NormalizeError', cause=None) - # do normalization return self._normalize(dataset, options)