Skip to content

Commit f2e8385

Browse files
committed
Remove redundant import
1 parent ec22c45 commit f2e8385

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Lib/test/test_pty.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import sys
21
import unittest
32
from test.support import (
43
is_android, is_apple_mobile, is_emscripten, is_wasi, reap_children, verbose
@@ -10,7 +9,7 @@
109
import_module('termios')
1110

1211
if is_android or is_apple_mobile or is_emscripten or is_wasi:
13-
raise unittest.SkipTest(f"pty is not available on this platform")
12+
raise unittest.SkipTest("pty is not available on this platform")
1413

1514
import errno
1615
import os

0 commit comments

Comments
 (0)