Additional clang-format and ci-custom fixes

This commit is contained in:
Michael Davidson 2023-12-26 13:12:02 +11:00
parent 93432b85b9
commit 255d851125
No known key found for this signature in database
GPG key ID: B8D1A99712B8B0EB
3 changed files with 4 additions and 6 deletions

View file

@ -1,6 +1,6 @@
import esphome.codegen as cg import esphome.codegen as cg
import esphome.config_validation as cv import esphome.config_validation as cv
from esphome.const import CONF_ID, CONF_TYPE from esphome.const import CONF_ID, CONF_TYPE, CONF_BORDER
from esphome.components import color from esphome.components import color
from . import horizontal_stack from . import horizontal_stack
from . import vertical_stack from . import vertical_stack
@ -21,7 +21,6 @@ MULTI_CONF = True
CONF_LAYOUT = "layout" CONF_LAYOUT = "layout"
CONF_MARGIN = "margin" CONF_MARGIN = "margin"
CONF_PADDING = "padding" CONF_PADDING = "padding"
CONF_BORDER = "border"
CONF_BORDER_COLOR = "border_color" CONF_BORDER_COLOR = "border_color"
BASE_ITEM_SCHEMA = cv.Schema( BASE_ITEM_SCHEMA = cv.Schema(

View file

@ -55,6 +55,5 @@ void LayoutItem::render(display::Display *display, display::Rect bounds) {
display->pop_local_coordinates(); display->pop_local_coordinates();
} }
} // namespace graphical_layout } // namespace graphical_layout
} // namespace esphome } // namespace esphome