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

pull/58977/head
Paulus Schoutsen 2021-10-28 02:20:28 -07:00
parent d36df72701
commit a23c1624fb
1 changed files with 1 additions and 1 deletions

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,