diff --git a/robot-server/tests/protocols/test_protocols_router.py b/robot-server/tests/protocols/test_protocols_router.py index fdad74eec88..fbecaabe425 100644 --- a/robot-server/tests/protocols/test_protocols_router.py +++ b/robot-server/tests/protocols/test_protocols_router.py @@ -450,7 +450,7 @@ async def test_create_protocol_not_readable( assert exc_info.value.status_code == 422 assert exc_info.value.content["errors"][0]["id"] == "ProtocolFilesInvalid" - assert 'oh no' in exc_info.value.content["errors"][0]["detail"] + assert "oh no" in exc_info.value.content["errors"][0]["detail"] async def test_create_protocol_different_robot_type( diff --git a/shared-data/python/setup.py b/shared-data/python/setup.py index 8f126f4ed83..ab592c2e944 100644 --- a/shared-data/python/setup.py +++ b/shared-data/python/setup.py @@ -32,7 +32,7 @@ "errors", "command", "commandAnnotation", - "liquid" + "liquid", ] DATA_TYPES = ["definitions", "schemas"] DEST_BASE_PATH = "data"