Skip to content

Commit

Permalink
getting rid of some tests and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberRoute committed Oct 3, 2024
1 parent 6c699ad commit 4001d5b
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions core/arp_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ def setup_ui_elements(self):

# Add static labels and list widgets
self.add_static_ui_labels()
self.add_list_widget_to_tab_1()

# Connect item click signal to open_device_details
self._ui.list.itemClicked.connect(self.open_device_details)
Expand All @@ -95,12 +94,6 @@ def add_static_ui_labels(self):
self._ui.verticalLayout.addWidget(os_label)
self._ui.verticalLayout.addWidget(interface_label)

def add_list_widget_to_tab_1(self):
"""Adds a QListWidget to the first tab of the UI."""
self.list_widget_tab7 = QListWidget() # pylint: disable=attribute-defined-outside-init
tab7_layout = QVBoxLayout(self._ui.tab_1)
tab7_layout.addWidget(self.list_widget_tab7)

def setup_font_for_list_widgets(self):
"""Sets up a uniform font for list widgets."""
font = QFont()
Expand Down

0 comments on commit 4001d5b

Please sign in to comment.