Fix implicit import in test_monitoring.py (gh-141795)

This commit is contained in:
SubbaraoGarlapati 2025-11-24 14:48:28 -05:00 committed by GitHub
parent fee7782650
commit 369ce2b139
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,10 +12,10 @@
import unittest
import test.support
from test.support import requires_specialization_ft, script_helper
from test.support import import_helper, requires_specialization_ft, script_helper
_testcapi = test.support.import_helper.import_module("_testcapi")
_testinternalcapi = test.support.import_helper.import_module("_testinternalcapi")
_testcapi = import_helper.import_module("_testcapi")
_testinternalcapi = import_helper.import_module("_testinternalcapi")
PAIR = (0,1)