Skip to content

Commit 7d0e709

Browse files
committed
Move import into test
1 parent 33591b4 commit 7d0e709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_capi/test_emscripten.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
unittest.skipUnless(is_emscripten, "only available on Emscripten")
55

6-
from _testinternalcapi import emscripten_set_up_async_input_device
76
from pathlib import Path
87

98

109
class EmscriptenAsyncInputDeviceTest(unittest.TestCase):
1110
def test_emscripten_async_input_device(self):
11+
from _testinternalcapi import emscripten_set_up_async_input_device
1212
supported = emscripten_set_up_async_input_device()
1313
p = Path("/dev/blah")
1414
self.addCleanup(p.unlink)

0 commit comments

Comments
 (0)