Skip to content

Commit

Permalink
workaround the linter errors on imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberRoute committed Sep 21, 2024
1 parent db90ff4 commit 4bbb3f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[MASTER]
init-hook='import sys; sys.path.append(".")'
4 changes: 1 addition & 3 deletions core/arp_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,13 @@
from PySide6.QtGui import QIcon, QFont, QColor # pylint: disable=E0611
from PySide6.QtCore import QRunnable, Slot, Qt, QThreadPool, QTimer # pylint: disable=E0611
from PyQt6.QtCore import QThread, pyqtSignal # pylint: disable=E0611
from ui.ui_arpscan import Ui_DeviceDiscovery # pylint: disable=E0401
from ui.ui_arpscan import Ui_DeviceDiscovery
from core import sniffer
from core import vendor
from core.platform import get_os
import core.networking as net




class DeviceDetailsWindow(QMainWindow): # pylint: disable=too-few-public-methods
"""
A window that displays detailed information about a network device.
Expand Down

0 comments on commit 4bbb3f5

Please sign in to comment.