Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions changes/364.removed
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Removed log.init from iosxewlc device.
Removed warning filter for logging.
4 changes: 0 additions & 4 deletions pyntc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Kickoff functions for getting instance of device objects."""

import os
import warnings
from importlib import metadata

from .devices import supported_devices
Expand All @@ -23,9 +22,6 @@
LIB_PATH_DEFAULT = "~/.ntc.conf"


warnings.simplefilter("default")


def ntc_device(device_type, *args, **kwargs):
"""
Instantiate an instance of a ``pyntc.devices.BaseDevice`` by ``device_type``.
Expand Down
2 changes: 0 additions & 2 deletions pyntc/devices/iosxewlc_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
class IOSXEWLCDevice(IOSDevice):
"""Cisco IOSXE WLC Device Implementation."""

log.init()

def _wait_for_device_start_reboot(self, timeout=600):
start = time.time()
while time.time() - start < timeout:
Expand Down
Loading