Skip to content

Commit

Permalink
Ruff fix 349
Browse files Browse the repository at this point in the history
  • Loading branch information
aweakley committed May 14, 2024
1 parent 17f7960 commit 85bac2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edtf/parser/parser_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ def __init__(self, *args):
self.objects = args

def __str__(self):
return "{%s}" % (", ".join([str(o) for o in self.objects]))
return "{{{}}}".format(", ".join([str(o) for o in self.objects]))

def _strict_date(self, lean):
if lean == LATEST:
Expand Down

0 comments on commit 85bac2a

Please sign in to comment.