Import Callable from collections.abc (#60354)

This commit is contained in:
Marc Mueller
2021-11-25 22:23:48 +01:00
committed by GitHub
parent 4360fb733f
commit de78c4f0f8
13 changed files with 20 additions and 14 deletions

View File

@@ -1,8 +1,9 @@
"""Support for Azure DevOps sensors."""
from __future__ import annotations
from collections.abc import Callable
from dataclasses import dataclass
from typing import Any, Callable
from typing import Any
from aioazuredevops.builds import DevOpsBuild