From 064a87e10eee76ac0ad8a663d9834def10b6eb0c Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Sat, 8 Dec 2018 07:57:08 +0000 Subject: [PATCH] Ignoring F821 in developer.rst --- doc/source/developer.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/developer.rst b/doc/source/developer.rst index 2930ac0f20ed2..ba6cec93d02e4 100644 --- a/doc/source/developer.rst +++ b/doc/source/developer.rst @@ -65,8 +65,8 @@ for each column, *including the index columns*. This has JSON form: .. code-block:: python # assuming there's at least 3 levels in the index - index_columns = metadata['index_columns'] - columns = metadata['columns'] + index_columns = metadata['index_columns'] # noqa: F821 + columns = metadata['columns'] # noqa: F821 ith_index = 2 assert index_columns[ith_index] == '__index_level_2__' ith_index_info = columns[-len(index_columns):][ith_index]