Skip to content

Commit f9518b4

Browse files
committed
ignore flake8; remove 'as'
1 parent e1419cf commit f9518b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/development/contributing_codebase.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ pandas strongly encourages the use of :pep:`484` style type hints. New developme
303303
Style guidelines
304304
~~~~~~~~~~~~~~~~
305305

306-
Type imports should follow the ``from typing import ...`` convention. Some types do not need to be imported since :pep:`585` as some builtin constructs, such as ``list`` and ``tuple``, can directly be used for type annotations. So rather than
306+
Type imports should follow the ``from typing import ...`` convention. Some types do not need to be imported since :pep:`585` some builtin constructs, such as ``list`` and ``tuple``, can directly be used for type annotations. So rather than
307307

308308
.. code-block:: python
309309
@@ -337,7 +337,7 @@ You should write
337337

338338
.. code-block:: python
339339
340-
from __future__ import annotations
340+
from __future__ import annotations # noqa: F404
341341
342342
maybe_primes: list[int | None] = []
343343

0 commit comments

Comments
 (0)