chore: apply missing pre-commit hooks
This commit is contained in:
parent
80c62ac94d
commit
80b046d1e5
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
from compose_viz.models.device import Device
|
||||
|
||||
|
||||
def test_device_init_normal() -> None:
|
||||
try:
|
||||
d = Device(host_path="/dev/ttyUSB0", container_path="/dev/ttyUSB1")
|
||||
|
@ -9,6 +10,7 @@ def test_device_init_normal() -> None:
|
|||
except Exception as e:
|
||||
assert False, e
|
||||
|
||||
|
||||
def test_device_with_cgroup_permissions() -> None:
|
||||
try:
|
||||
d = Device(host_path="/dev/sda1", container_path="/dev/xvda", cgroup_permissions="rwm")
|
||||
|
|
Loading…
Reference in a new issue