From a488b3eb6ee2af0abe18c306f190d4bb159cbf65 Mon Sep 17 00:00:00 2001 From: saipraneeth <2506664+msaipraneeth@users.noreply.github.com> Date: Tue, 12 Dec 2023 07:15:16 +0000 Subject: [PATCH] fix Pep8 E501 in entity.py --- cmem_plugin_base/dataintegration/entity.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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}"