mirror of
https://github.com/home-assistant/core.git
synced 2026-05-19 23:10:15 +01:00
8502f7c7d4
* Add integration scaffolding script * Make easier to develop * Update py.test -> pytest
11 lines
264 B
Python
11 lines
264 B
Python
"""Errors for scaffolding."""
|
|
|
|
|
|
class ExitApp(Exception):
|
|
"""Exception to indicate app should exit."""
|
|
|
|
def __init__(self, reason, exit_code):
|
|
"""Initialize the exit app exception."""
|
|
self.reason = reason
|
|
self.exit_code = exit_code
|