Skip to content

Commit b7a92c4

Browse files
Remove invalid type annotation (#808)
1 parent b383d2f commit b7a92c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

linodecli/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from json import JSONDecodeError
1111
from logging import getLogger
1212
from sys import version_info
13-
from typing import IO, Any, ContextManager, Dict
13+
from typing import IO, Any, Dict
1414

1515
import requests
1616
import yaml
@@ -311,7 +311,7 @@ def _load_openapi_spec(spec_location: str) -> OpenAPI:
311311
@contextlib.contextmanager
312312
def _get_spec_file_reader(
313313
spec_location: str,
314-
) -> ContextManager[IO]:
314+
):
315315
"""
316316
Returns a reader for an OpenAPI spec file from the given location.
317317

0 commit comments

Comments
 (0)