mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
10 lines
215 B
Python
10 lines
215 B
Python
import esphome.components.rc522.binary_sensor as rc522_binary_sensor
|
|
|
|
DEPENDENCIES = ["rc522"]
|
|
|
|
CONFIG_SCHEMA = rc522_binary_sensor.CONFIG_SCHEMA
|
|
|
|
|
|
def to_code(config):
|
|
yield rc522_binary_sensor.to_code(config)
|