1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-20 07:20:14 +01:00
Files
core/script/scaffold/model.py
T
Paulus Schoutsen 8502f7c7d4 Add integration scaffolding script (#26777)
* Add integration scaffolding script

* Make easier to develop

* Update py.test -> pytest
2019-09-20 17:02:18 -07:00

13 lines
221 B
Python

"""Models for scaffolding."""
import attr
@attr.s
class Info:
"""Info about new integration."""
domain: str = attr.ib()
name: str = attr.ib()
codeowner: str = attr.ib()
requirement: str = attr.ib()