Skip to content

Commit

Permalink
Remove unused import that no longer exists (#937)
Browse files Browse the repository at this point in the history
  • Loading branch information
ogenstad authored Jun 28, 2024
1 parent 7ab248c commit c132a3f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions nornir/core/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
import sys
import warnings
from pathlib import Path
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Type, TypeVar
from typing import Any, Dict, List, Optional, Type, TypeVar

import ruamel.yaml

from nornir.core.exceptions import ConflictingConfigurationWarning

if TYPE_CHECKING:
from nornir.core.deserializer.inventory import Inventory # noqa


DEFAULT_SSH_CONFIG = str(Path("~/.ssh/config").expanduser())

T = TypeVar("T")
Expand Down

0 comments on commit c132a3f

Please sign in to comment.