Skip to content

Commit

Permalink
Reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CJNE committed Nov 17, 2021
1 parent b4338e8 commit 04c25d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/porscheconnect/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"""Config flow for Porsche Connect integration."""
import logging
from pyporscheconnectapi.connection import Connection
from pyporscheconnectapi.exceptions import WrongCredentials

import voluptuous as vol
from homeassistant import config_entries
Expand All @@ -11,6 +9,8 @@
from homeassistant.const import CONF_EMAIL
from homeassistant.const import CONF_PASSWORD
from homeassistant.helpers import aiohttp_client
from pyporscheconnectapi.connection import Connection
from pyporscheconnectapi.exceptions import WrongCredentials

from .const import DOMAIN # pylint:disable=unused-import

Expand Down

0 comments on commit 04c25d1

Please sign in to comment.