diff --git a/sloth/annotations/container.py b/sloth/annotations/container.py index 618240d..aeb0681 100644 --- a/sloth/annotations/container.py +++ b/sloth/annotations/container.py @@ -313,6 +313,7 @@ class JsonContainer(AnnotationContainer): """ f = open(fname, "w") json.dump(annotations, f, indent=4, separators=(',', ': '), sort_keys=True) + f.write("\n") class MsgpackContainer(AnnotationContainer):