From b2aff87b4396d0e9c3c39c2930c02ebc6d848ee1 Mon Sep 17 00:00:00 2001 From: Jonathan Martens Date: Tue, 27 Oct 2020 19:23:46 +0100 Subject: [PATCH] Prevent code block brake up (#704) * Prevent code block brake up Prevent code block from braking up and second part being slightly de-indented. --- docs/creating_platform_code_review.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/creating_platform_code_review.md b/docs/creating_platform_code_review.md index 214feb9d..f30cf96e 100644 --- a/docs/creating_platform_code_review.md +++ b/docs/creating_platform_code_review.md @@ -62,8 +62,8 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend( ```python from homeassistant.components.light import Light - - + + class HueLight(Light): """Hue light component.""" ```