Skip to content

Commit

Permalink
Fix error with TypeGuard import
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Normandin <[email protected]>
  • Loading branch information
lebrice committed Feb 6, 2024
1 parent a67a518 commit 981ffd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions milatools/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
from collections.abc import Callable, Iterable
from contextlib import contextmanager
from pathlib import Path
from typing import Any, Literal, TypeGuard, Union, get_args
from typing import Any, Literal, Union, get_args

import blessed
import paramiko
import questionary as qn
from invoke.exceptions import UnexpectedExit
from sshconf import ConfigLine, SshConfigFile, read_ssh_config
from typing_extensions import ParamSpec
from typing_extensions import ParamSpec, TypeGuard

if typing.TYPE_CHECKING:
from milatools.cli.remote import Remote
Expand Down

0 comments on commit 981ffd4

Please sign in to comment.