From 524abfa4af16dd17670dfd924fde0e74e60055ea Mon Sep 17 00:00:00 2001 From: Knut Nergaard Date: Sun, 8 Dec 2024 01:24:14 +0100 Subject: [PATCH] Remove unused imports. --- Lib/fontParts/base/info.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Lib/fontParts/base/info.py b/Lib/fontParts/base/info.py index 02b532c0..5a7ea754 100644 --- a/Lib/fontParts/base/info.py +++ b/Lib/fontParts/base/info.py @@ -3,11 +3,8 @@ TYPE_CHECKING, Any, Callable, - Generic, List, Optional, - Tuple, - Type, Union, ) @@ -21,23 +18,15 @@ from fontParts.base.errors import FontPartsError from fontParts.base.deprecated import DeprecatedInfo, RemovedInfo from fontParts.base.annotations import ( - CharacterMappingType, - CollectionType, - QuadrupleCollectionType, TransformationType, - ReverseComponentMappingType, - IntFloatType, ) if TYPE_CHECKING: from fontParts.base.font import BaseFont - from fontParts.base.glyph import BaseGlyph - from fontParts.base.lib import BaseLib # Notes - class BaseInfo(BaseObject, DeprecatedInfo, RemovedInfo): """Represent the basis for an info object."""