Skip to content

Commit

Permalink
Ignoring F821 in developer.rst (pandas-dev#24160)
Browse files Browse the repository at this point in the history
  • Loading branch information
datapythonista authored and Pingviinituutti committed Feb 28, 2019
1 parent e088484 commit fc7c714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/developer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit fc7c714

Please sign in to comment.