Skip to content

Commit

Permalink
Remove unused Host import
Browse files Browse the repository at this point in the history
I'm guessing this is a leftover from older days and that it has remained
since because of the noqa so it flew under the radar.
  • Loading branch information
ogenstad committed Jun 11, 2024
1 parent a4aa92a commit 9cac42c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions nornir/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import logging.config
import types
from typing import TYPE_CHECKING, Any, Callable, Dict, Generator, List, Optional, Type
from typing import Any, Callable, Dict, Generator, List, Optional, Type

from nornir.core.configuration import Config
from nornir.core.inventory import Inventory
Expand All @@ -10,9 +10,6 @@
from nornir.core.state import GlobalState
from nornir.core.task import AggregatedResult, Task

if TYPE_CHECKING:
from nornir.core.inventory import Host # noqa: W0611

logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 9cac42c

Please sign in to comment.