Only import sqlite3 by default if running mypy checks

This commit is contained in:
Andrew Morgan 2020-03-25 15:22:17 +00:00
parent 4cff617df1
commit cb76e53b7f

View file

@ -12,12 +12,16 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sqlite3
import struct
import threading
from pip._internal.utils.typing import MYPY_CHECK_RUNNING
from synapse.storage.engines import BaseDatabaseEngine
if MYPY_CHECK_RUNNING:
import sqlite3
class Sqlite3Engine(BaseDatabaseEngine[sqlite3.Connection]):
def __init__(self, database_module, database_config):