Skip to content

Commit fc7c714

Browse files
datapythonistaPingviinituutti
authored andcommitted
Ignoring F821 in developer.rst (pandas-dev#24160)
1 parent e088484 commit fc7c714

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/developer.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ for each column, *including the index columns*. This has JSON form:
6565
.. code-block:: python
6666
6767
# assuming there's at least 3 levels in the index
68-
index_columns = metadata['index_columns']
69-
columns = metadata['columns']
68+
index_columns = metadata['index_columns'] # noqa: F821
69+
columns = metadata['columns'] # noqa: F821
7070
ith_index = 2
7171
assert index_columns[ith_index] == '__index_level_2__'
7272
ith_index_info = columns[-len(index_columns):][ith_index]

0 commit comments

Comments
 (0)