Files
testpoint/core/__init__.py
T
2026-07-29 10:47:40 +00:00

8 lines
121 B
Python

try:
import pymysql
except ImportError:
pymysql = None
if pymysql is not None:
pymysql.install_as_MySQLdb()