Integrating with flake8

If you rely on sqliteimport’s auto-loading of .sqlite3 files on the PYTHONPATH, importing sqliteimport is sufficient.

import sqliteimport

import boto3
import requests

However, flake8 will throw warning F401, indicating that the sqliteimport appears to be unused.

This can be addressed by adding a noqa: F401 comment.

import sqliteimport  # noqa: F401