Skip to content

Commit

Permalink
rebase+new pyright version
Browse files Browse the repository at this point in the history
  • Loading branch information
twoertwein committed Dec 27, 2021
1 parent 78cbbb1 commit b31e18d
Show file tree
Hide file tree
Showing 19 changed files with 1 addition and 18 deletions.
1 change: 0 additions & 1 deletion pandas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
# flake8: noqa

__docformat__ = "restructuredtext"
Expand Down
1 change: 0 additions & 1 deletion pandas/_testing/_hypothesis.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
"""
Hypothesis data generator helpers.
"""
Expand Down
1 change: 0 additions & 1 deletion pandas/_typing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
from __future__ import annotations

from datetime import (
Expand Down
1 change: 0 additions & 1 deletion pandas/core/api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
# flake8: noqa:F401

from pandas._libs import (
Expand Down
1 change: 0 additions & 1 deletion pandas/core/arrays/_arrow_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
import json

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion pandas/core/computation/check.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
from pandas.compat._optional import import_optional_dependency

ne = import_optional_dependency("numexpr", errors="warn")
Expand Down
1 change: 1 addition & 0 deletions pandas/core/dtypes/base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportGeneralTypeIssues = false
"""
Extend pandas with custom array types.
"""
Expand Down
1 change: 0 additions & 1 deletion pandas/core/indexers/objects.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
"""Indexer objects for computing start/end window bounds for rolling operations"""
from __future__ import annotations

Expand Down
1 change: 0 additions & 1 deletion pandas/core/indexes/frozen.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
"""
frozen (immutable) data structures to support MultiIndexing
Expand Down
1 change: 0 additions & 1 deletion pandas/core/indexes/timedeltas.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
""" implement the TimedeltaIndex """
from __future__ import annotations

Expand Down
1 change: 0 additions & 1 deletion pandas/errors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
# flake8: noqa

"""
Expand Down
1 change: 0 additions & 1 deletion pandas/io/formats/latex.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
"""
Module for formatting output data in Latex.
"""
Expand Down
1 change: 0 additions & 1 deletion pandas/io/formats/string.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
"""
Module for formatting output data in console (to string).
"""
Expand Down
1 change: 0 additions & 1 deletion pandas/io/gbq.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
""" Google BigQuery support """
from __future__ import annotations

Expand Down
1 change: 0 additions & 1 deletion pandas/io/orc.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
""" orc compat """
from __future__ import annotations

Expand Down
1 change: 0 additions & 1 deletion pandas/io/sas/sas_xport.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
"""
Read a SAS XPort format file into a Pandas DataFrame.
Expand Down
1 change: 0 additions & 1 deletion pandas/io/spss.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
from __future__ import annotations

from pathlib import Path
Expand Down
1 change: 0 additions & 1 deletion pandas/plotting/_matplotlib/groupby.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
from __future__ import annotations

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion pandas/plotting/_misc.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# pyright: reportGeneralTypeIssues = false
from contextlib import contextmanager

from pandas.plotting._core import _get_plot_backend
Expand Down

0 comments on commit b31e18d

Please sign in to comment.