Fix default value for host in octoprint config flow (#58568)

This commit is contained in:
Paulus Schoutsen 2021-10-28 02:20:28 -07:00 committed by GitHub
parent 7a728997bb
commit 6a3c23d02a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ from .const import DOMAIN
_LOGGER = logging.getLogger(__name__)
def _schema_with_defaults(username="", host=None, port=80, path="/", ssl=False):
def _schema_with_defaults(username="", host="", port=80, path="/", ssl=False):
return vol.Schema(
{
vol.Required(CONF_USERNAME, default=username): cv.string,