From bf3f547492b7c10880e3d85f947814310cb63297 Mon Sep 17 00:00:00 2001 From: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> Date: Thu, 21 Oct 2021 13:57:40 +0300 Subject: [PATCH] Import `Callable` from `typing` --- tomli/_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tomli/_parser.py b/tomli/_parser.py index f8f9c9c..29d221f 100644 --- a/tomli/_parser.py +++ b/tomli/_parser.py @@ -1,6 +1,6 @@ from __future__ import annotations -from collections.abc import Callable, Iterable +from collections.abc import Iterable import string from types import MappingProxyType from typing import Any, BinaryIO, NamedTuple