From ae9d773e04aaeb3c9999be0c60edf98cf6482dd8 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Thu, 10 Aug 2023 11:37:50 +0200 Subject: [PATCH] add TODO for typing.TypeAlias --- capa/features/extractors/base_extractor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/capa/features/extractors/base_extractor.py b/capa/features/extractors/base_extractor.py index b88da5f8..46908fb2 100644 --- a/capa/features/extractors/base_extractor.py +++ b/capa/features/extractors/base_extractor.py @@ -12,6 +12,7 @@ import dataclasses from typing import Any, Dict, Tuple, Union, Iterator from dataclasses import dataclass +# TODO(williballenthin): use typing.TypeAlias directly when Python 3.9 is deprecated from typing_extensions import TypeAlias import capa.features.address