mirror of
https://github.com/home-assistant/core.git
synced 2025-05-03 05:29:14 +00:00

* Enable cert_expiry config entries * add black * lint fixes * Rerun black * Black on json files is a bad idea * Work on comments * Forgot the lint * More comment work * Correctly set defaults * More comments * Add codeowner * Fix black * More comments implemented * Removed the catch * Add helper.py from cert_expiry to .coveragerc
7 lines
127 B
Python
7 lines
127 B
Python
"""Const for Cert Expiry."""
|
|
|
|
DOMAIN = "cert_expiry"
|
|
DEFAULT_NAME = "SSL Certificate Expiry"
|
|
DEFAULT_PORT = 443
|
|
TIMEOUT = 10.0
|