Skip to content

Commit

Permalink
fix one more bad fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjonesBSU committed Jul 18, 2024
1 parent c3a92fa commit 87d659e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mbuild/port.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def __repr__(self):
else:
descr.append("anchor: None, ")

descr.append(f"labels: {", ".join(self.access_labels)}, ")
descr.append("labels: {}, ".format(", ".join(self.access_labels)))

descr.append(f"id: {id(self)}>")
return "".join(descr)

0 comments on commit 87d659e

Please sign in to comment.