Skip to content

Commit

Permalink
fix: black
Browse files Browse the repository at this point in the history
  • Loading branch information
utnapischtim committed Sep 24, 2024
1 parent 52f8b29 commit e794852
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 e794852

Please sign in to comment.