From 1f3ddea08b12d3b71db8eccf5dbb22a08be1f3a4 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 25 Jun 2023 13:57:07 -0700 Subject: [PATCH] Ignore missing imports for pysqlite3 and sqlean, refs #559 --- mypy.ini | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mypy.ini diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..257954d --- /dev/null +++ b/mypy.ini @@ -0,0 +1,4 @@ +[mypy] + +[mypy-pysqlite3,sqlean] +ignore_missing_imports = True \ No newline at end of file