Skip to content

Commit

Permalink
Dont use upstream debug conf
Browse files Browse the repository at this point in the history
  • Loading branch information
elupus authored Jan 28, 2023
1 parent 7ee4eff commit de97852
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions components/nibegw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@

import esphome.config_validation as cv
import esphome.codegen as cg
from esphome.const import (
CONF_ID,
CONF_DEBUG,
)
from esphome.const import CONF_ID
from esphome import pins
from esphome.core import CORE
from esphome.components.network import IPAddress
Expand All @@ -24,6 +21,7 @@
CONF_TARGET_IP = "ip"
CONF_ACKNOWLEDGE = "acknowledge"
CONF_UDP = "udp"
CONF_DEBUG = "debug"

CONF_ACKNOWLEDGE_MODBUS40 = "modbus40"
CONF_ACKNOWLEDGE_RMU40 = "rmu40"
Expand Down Expand Up @@ -167,4 +165,4 @@ def generate_request(command: int, data: list[int]) -> list[int]:
request[CONF_ADDRESS],
request[CONF_TOKEN],
data
))
))

0 comments on commit de97852

Please sign in to comment.