Skip to content

Commit

Permalink
formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
adechant committed Oct 9, 2023
1 parent 3874f15 commit a7ce9d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion custom_components/ha_vscode/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""Adds config flow for VSCode HA Tunnel."""
import logging
import os.path
import voluptuous as vol

import voluptuous as vol
from awesomeversion import AwesomeVersion
from homeassistant import config_entries
from homeassistant.const import __version__ as HAVERSION
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ha_vscode/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
DOMAIN = "ha_vscode"
PACKAGE_NAME = "custom_components.ha_vscode"
DOMAIN_DATA = f"{DOMAIN}_data"
VERSION = "0.0.1"
VERSION = "0.1.100"
MINIMUM_HA_VERSION = "2023.6.0"
ICON = "mdi:format-quote-close"
CONF_ENABLED = "enabled"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ha_vscode/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/adechant/ha_vscode/issues",
"requirements": [],
"version": "0.1.24"
"version": "0.1.100"
}
5 changes: 3 additions & 2 deletions custom_components/ha_vscode/vscode_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
import subprocess
import time

from threading import Thread, Lock
from threading import Lock
from threading import Thread
from .const import PACKAGE_NAME
from .exceptions import HAVSCodeDownloadException
from .exceptions import HAVSCodeZipException
from .exceptions import HAVSCodeTarException
from .exceptions import HAVSCodeZipException

if not "PACKAGE_NAME" in globals():
PACKAGE_NAME = "ha_vscode"
Expand Down

0 comments on commit a7ce9d7

Please sign in to comment.