From e85a02d50e1ee2268fdfbc79c219a930f7f6e760 Mon Sep 17 00:00:00 2001 From: Zhiwei Liang Date: Fri, 8 Aug 2025 01:46:38 -0400 Subject: [PATCH] Remove invalid type annotation --- linodecli/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linodecli/cli.py b/linodecli/cli.py index 5fcd48e8f..718b619a4 100644 --- a/linodecli/cli.py +++ b/linodecli/cli.py @@ -10,7 +10,7 @@ from json import JSONDecodeError from logging import getLogger from sys import version_info -from typing import IO, Any, ContextManager, Dict +from typing import IO, Any, Dict import requests import yaml @@ -311,7 +311,7 @@ def _load_openapi_spec(spec_location: str) -> OpenAPI: @contextlib.contextmanager def _get_spec_file_reader( spec_location: str, - ) -> ContextManager[IO]: + ): """ Returns a reader for an OpenAPI spec file from the given location.