Skip to content

Commit

Permalink
additional fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: kimpaller <[email protected]>
  • Loading branch information
kimpaller committed Feb 27, 2024
1 parent e8e1ce0 commit b3d3fe1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions nebula/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ def network_check(self):
self.monitor[0].stop_log()
raise ne.SSHNotFunctionalAfterBootFileUpdate

@_release_thread_lock
def recover_board( # type: ignore
@_release_thread_lock # type: ignore
def recover_board( # noqa:C901
self,
system_top_bit_path,
bootbinpath,
Expand Down Expand Up @@ -533,7 +533,7 @@ def board_reboot_uart_net_pdu(
print("Home sweet home")
self.monitor[0].stop_log()

@_release_thread_lock
@_release_thread_lock # type: ignore
def board_reboot_sdmux_pdu(
self,
system_top_bit_path=None,
Expand Down
2 changes: 1 addition & 1 deletion nebula/resources/template_noos_gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ board-config:
netbox_field: devices.custom_fields.device_carrier
field_3:
name: daughter
help: "Daugther board name"
help: "Daughter board name"
optional: True
netbox_field: devices.custom_fields.device_daughter
field_4:
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import pytest

from nebula import pdu, usbmux


Expand Down
1 change: 1 addition & 0 deletions tests/test_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import time

import pytest

from nebula import helper, manager

param_default = [
Expand Down

0 comments on commit b3d3fe1

Please sign in to comment.