From 7159372e3b381119715c99a37603b3d2d6b9ea46 Mon Sep 17 00:00:00 2001 From: alrex Date: Fri, 19 Feb 2021 16:53:37 -0800 Subject: [PATCH] Fix docs build (#348) --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 8db08c221..a3a46b447 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -124,8 +124,8 @@ if "class_references" in mcfg: if "anys" in mcfg: anys = getlistcfg(mcfg["anys"]) - for any in anys: - nitpick_ignore.append(("any", any,)) + for _any in anys: + nitpick_ignore.append(("any", _any,)) # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"]