From ad2e67eafe13aeed347997b032ec1b2d286193b2 Mon Sep 17 00:00:00 2001 From: Kaushik Kulkarni <kaushikcfd@gmail.com> Date: Fri, 17 Dec 2021 15:01:06 +0530 Subject: [PATCH] [mypy]: ignore pygments-specific routines --- .pylintrc-local.yml | 2 ++ setup.cfg | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.pylintrc-local.yml b/.pylintrc-local.yml index 5a0594d..fc39119 100644 --- a/.pylintrc-local.yml +++ b/.pylintrc-local.yml @@ -3,3 +3,5 @@ - matplotlib - ipykernel - ply + - pygments.lexers + - pygments.formatters diff --git a/setup.cfg b/setup.cfg index 4d2c827..dd4ef87 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,3 +30,6 @@ ignore_missing_imports = True [mypy-pyopencl] ignore_missing_imports = True + +[mypy-pygments.*] +ignore_missing_imports = True -- GitLab