Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions linodecli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down
Loading