diff --git a/cmem_plugin_base/dataintegration/entity.py b/cmem_plugin_base/dataintegration/entity.py index 5ce62d5..4656f73 100644 --- a/cmem_plugin_base/dataintegration/entity.py +++ b/cmem_plugin_base/dataintegration/entity.py @@ -21,7 +21,9 @@ def __init__( self.is_attribute = is_attribute def __str__(self): - obj = {'path': self.path, 'is_uri': self.is_uri, 'is_attribute': self.is_attribute} + obj = { + 'path': self.path, 'is_uri': self.is_uri, 'is_attribute': self.is_attribute + } return f"{obj}"