Skip to content

Commit 103cc3f

Browse files
committed
Fix syntax
1 parent 56fc9b5 commit 103cc3f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

json_editor/admin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import json
21
import copy
32

43
import collections

json_editor/templates/django_json_editor/django_json_editor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
});
1515
{% if data %}
1616
var json = {{ data|safe }};
17-
{{ name }}_editor.setValue(json)
17+
{{ name }}_editor.setValue(json);
1818
{% endif %}
1919
</script>
2020

0 commit comments

Comments
 (0)