diff --git a/formats/mission_plan.py b/formats/mission_plan.py
index ddd9b04f5323379c8e7a417ab0ac2e556aa58784..30fba2198f4cfdcb7b08494dbf00f95354137126 100644
--- a/formats/mission_plan.py
+++ b/formats/mission_plan.py
@@ -90,7 +90,8 @@ mission_plan_schema = {
         },
         "emergency": {
             "type": "boolean",
-            "description": "To indicate if this is an emergency. 1 = emergency and 0 = no emergency",
+            "description": "To indicate if this is an emergency. "
+            + "1 = emergency and 0 = no emergency",
             "default": False,
             "example": False,
         },
diff --git a/tests/fixtures/schemas.py b/tests/fixtures/schemas.py
index d8c95f24aa6755842b50f8c8e4cca6c54bf1a6e8..71d0ae13c5450550ae474d3482978d505e062e76 100644
--- a/tests/fixtures/schemas.py
+++ b/tests/fixtures/schemas.py
@@ -167,9 +167,10 @@ mission_plan_schema = {
         },
         "emergency": {
             "default": False,
-            "description": "To indicate if this is an emergency. 1 = emergency and 0 = no emergency",
+            "description": "To indicate if this is an emergency. "
+            + "1 = emergency and 0 = no emergency",
             "example": False,
-            "type": "boolean"
+            "type": "boolean",
         },
         "plan": {
             "type": "array",