Skip to content

Commit 0d2d40c

Browse files
committed
fix: move re to the top
Signed-off-by: yihong0618 <[email protected]>
1 parent a8af464 commit 0d2d40c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_inspect/test_inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
from os.path import normcase
1616
import _pickle
1717
import pickle
18+
import re
1819
import shutil
1920
import stat
2021
import sys
@@ -6160,7 +6161,6 @@ def test_pwd_module_has_signatures(self):
61606161
self._test_module_has_signatures(pwd)
61616162

61626163
def test_re_module_has_signatures(self):
6163-
import re
61646164
methods_no_signature = {'Match': {'group'}}
61656165
self._test_module_has_signatures(re,
61666166
methods_no_signature=methods_no_signature,

0 commit comments

Comments
 (0)