Skip to content

Commit

Permalink
comma separated
Browse files Browse the repository at this point in the history
  • Loading branch information
philopon committed Apr 27, 2018
1 parent 6bf3d59 commit d10bcab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mordred/_base/result.py
Expand Up @@ -19,6 +19,8 @@ def __str__(self):
buf = ["Result({"]
for k, v in zip(self._descriptors, self._values):
buf.append("'{}': {}".format(k, v))
buf.append(", ")
buf.pop()
buf.append("})")
return "".join(buf)

Expand Down

0 comments on commit d10bcab

Please sign in to comment.