mirror of
https://github.com/home-assistant/core.git
synced 2026-05-20 07:20:14 +01:00
8502f7c7d4
* Add integration scaffolding script * Make easier to develop * Update py.test -> pytest
13 lines
221 B
Python
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()
|