From 8af0aa35a0e20ae3567f237980fec360c936c95e Mon Sep 17 00:00:00 2001 From: Test User Date: Wed, 1 Mar 2023 16:10:57 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20upgrade=20pyarrow=20(to?= =?UTF-8?q?=20use=20filesystem)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit also list all the modules to ignore for mypy at the same time. thanks @AndreaSoria https://github.com/huggingface/datasets-server/pull/875#discussion_r1121940215 --- services/api/pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/services/api/pyproject.toml b/services/api/pyproject.toml index 24d3cbc1da..d96c0b6d4a 100644 --- a/services/api/pyproject.toml +++ b/services/api/pyproject.toml @@ -66,9 +66,9 @@ ignore_missing_imports = true # ^ prometheus_client is now typed, but starlette-prometheus requires an old version [[tool.mypy.overrides]] -module = "hffs.*" -ignore_missing_imports = true - -[[tool.mypy.overrides]] -module = "pyarrow.*" +module = [ + "hffs.*", + "pyarrow.*", + "tqdm.*" +] ignore_missing_imports = true