Bump pylint from 2.14.5 to 2.15.0 (#3746)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2022-08-31 17:01:36 +12:00
committed by GitHub
parent 71697df2b6
commit 2650441013
4 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ def get_firmware(value):
def dl(url):
try:
req = requests.get(url)
req = requests.get(url, timeout=30)
req.raise_for_status()
except requests.exceptions.RequestException as e:
raise cv.Invalid(f"Could not download firmware file ({url}): {e}")