Skip to content

Commit

Permalink
fix Pep8 E501 in entity.py
Browse files Browse the repository at this point in the history
  • Loading branch information
msaipraneeth committed Dec 12, 2023
1 parent 540dde2 commit a488b3e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmem_plugin_base/dataintegration/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"


Expand Down

0 comments on commit a488b3e

Please sign in to comment.