Should this trigger for type annotations? ```python from __future__ import annotations import argparse from typing import Any def build_command(subparsers: argparse._SubParsersAction, defaults: Any) -> None: ... ```
Should this trigger for type annotations?