Skip to content

Commit 06c676f

Browse files
committed
Fix format
1 parent a6717ed commit 06c676f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/component/system/test_physical_channel_properties.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import sys
2+
13
import numpy
24
import pytest
35

@@ -82,17 +84,15 @@ def test___physical_channel_with_teds___get_uint32_property___returns_configured
8284
) as phys_chan:
8385
assert phys_chan.teds_mfg_id == 17
8486

85-
@pytest.mark.skipif(
86-
not sys.platform.startswith("win"), reason="mioDAQ support Windows-only"
87-
)
87+
88+
@pytest.mark.skipif(not sys.platform.startswith("win"), reason="mioDAQ support Windows-only")
8889
def test___physical_channel___get_int32_property___returns_value():
8990
phys_chans = PhysicalChannel("mioDAQ/port0")
9091

9192
assert phys_chans.dig_port_logic_family in LogicFamily
9293

93-
@pytest.mark.skipif(
94-
not sys.platform.startswith("win"), reason="mioDAQ support Windows-only"
95-
)
94+
95+
@pytest.mark.skipif(not sys.platform.startswith("win"), reason="mioDAQ support Windows-only")
9696
@pytest.mark.library_only(
9797
reason="AB#2375679: gRPC interpreter doesn't support setting physical channel property."
9898
)

0 commit comments

Comments
 (0)