We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27a7e3d commit cafd63dCopy full SHA for cafd63d
src/pylada/jobfolder/forwarding_dict.py
@@ -279,7 +279,8 @@ def __str__(self):
279
if len(self) == 0:
280
return '{}'
281
if len(self) == 1:
282
- return "{{'{0}': {1}}}".format(self.keys()[0], repr(self.values()[0]))
+ # colton_bug return "{{'{0}': {1}}}".format(self.keys()[0], repr(self.values()[0]))
283
+ return "{{'{0}': {1}}}".format(list(self.keys())[0], repr(list(self.values())[0]))
284
string = "{\n"
285
m = max(len(k) for k in self.keys())
286
for k, v in self.items():
0 commit comments