Skip to content

Commit

Permalink
fix: black
Browse files Browse the repository at this point in the history
  • Loading branch information
utnapischtim authored and ntarocco committed Apr 15, 2024
1 parent 5b7e744 commit e6a2864
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions invenio_pidstore/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,9 +516,11 @@ def __repr__(self):
self.pid_type,
self.pid_value,
self.status,
" / {0}:{1}".format(self.object_type, self.object_uuid)
if self.object_type
else "",
(
" / {0}:{1}".format(self.object_type, self.object_uuid)
if self.object_type
else ""
),
)


Expand Down

0 comments on commit e6a2864

Please sign in to comment.