1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-30 06:33:51 +00:00

Fix files CI after merging (#3175)

This commit is contained in:
Jesse Hills
2022-02-09 08:04:44 +13:00
committed by GitHub
parent 9826726a72
commit 88d72f8c9a
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ def ensure_option_map():
def validator(value):
cv.check_not_templatable(value)
option = cv.All(cv.string_strict)
mapping = cv.All(cv.int_range(-(2 ** 63), 2 ** 63 - 1))
mapping = cv.All(cv.int_range(-(2**63), 2**63 - 1))
options_map_schema = cv.Schema({option: mapping})
value = options_map_schema(value)