Add trailing commas for pre-commit hook...

master
Michael Chisholm 2020-02-13 17:37:59 -05:00
parent 98a654884d
commit be5274878d
2 changed files with 5 additions and 5 deletions

View File

@ -432,8 +432,8 @@ def test_unversioned_objects(mem_store):
"created": "1988-01-02T16:44:04.000Z",
"definition_type": "statement",
"definition": {
"statement": "Copyright (C) ACME Corp."
}
"statement": "Copyright (C) ACME Corp.",
},
}
mem_store.add(marking)

View File

@ -448,14 +448,14 @@ def test_unversioned_objects(mem_store):
"created": "1988-01-02T16:44:04.000Z",
"definition_type": "statement",
"definition": {
"statement": "Copyright (C) ACME Corp."
}
"statement": "Copyright (C) ACME Corp.",
},
}
file_sco = {
"type": "file",
"id": "file--bbd59c0c-1aa4-44f1-96de-80b8325372c7",
"name": "cats.png"
"name": "cats.png",
}
mem_store.add([marking, file_sco])