Skip to content

Commit bb09d7f

Browse files
authored
Merge pull request #91 from edwardtfn/fix-name-CORE-is-not-defined
Fix `name 'CORE' is not defined`
2 parents ba3fc89 + b6e3f41 commit bb09d7f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

ESPHome/TX-Ultimate-Easy-ESPHome_core_common.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ globals:
101101
type: std::string
102102
restore_value: true
103103
max_restore_data_length: 3
104-
# initial_value: "''"
105104

106105
logger:
107106
level: DEBUG

components/tx_ultimate_easy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import esphome.codegen as cg
22
import esphome.config_validation as cv
3+
from esphome import automation
34
from esphome.components import uart
45
from esphome.const import (
56
CONF_ID,
67
)
7-
8-
from esphome import automation
8+
from esphome.core import CORE
99

1010
CODEOWNERS = ["@edwardtfn"]
1111
DEPENDENCIES = ['uart']

0 commit comments

Comments
 (0)