1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Update python version used for pylint [Py310] (#86414)

* Update python version used for pylint linting [Py310]

* Import Callable from collections.abc [Py310]

* Use builtin anext [Py310]
This commit is contained in:
Marc Mueller
2023-01-23 07:56:15 +01:00
committed by GitHub
parent 45b4b0e990
commit d7dda6bee5
11 changed files with 18 additions and 20 deletions

View File

@@ -2,10 +2,10 @@
# pylint: disable=invalid-name
import asyncio
import collections
from collections.abc import Callable
from datetime import datetime, timedelta
from http import HTTPStatus
import json
from typing import Callable
from unittest.mock import Mock, patch
import pytest