Skip to content

Commit 08280b1

Browse files
[Bot] Combine APIs and create typings
1 parent 187f740 commit 08280b1

33 files changed

+30692
-3439
lines changed

data/api.json

+23,616-3,343
Large diffs are not rendered by default.

data/typing/geopandas.geodataframe.py

+3,596
Large diffs are not rendered by default.

data/typing/geopandas.geoseries.py

+627
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
from typing import *
2+
3+
4+
class TestComparisonOps:
5+
@classmethod
6+
def assert_series_equal(
7+
cls, /, left: pandas.core.series.Series, right: pandas.core.series.Series
8+
):
9+
"""
10+
usage.geopandas: 1
11+
"""
12+
...
13+
14+
15+
class TestDtype:
16+
@classmethod
17+
def assert_series_equal(
18+
cls, /, left: pandas.core.series.Series, right: pandas.core.series.Series
19+
):
20+
"""
21+
usage.geopandas: 1
22+
"""
23+
...
24+
25+
26+
class TestMissing:
27+
@classmethod
28+
def assert_series_equal(
29+
cls, /, left: pandas.core.series.Series, right: pandas.core.series.Series
30+
):
31+
"""
32+
usage.geopandas: 1
33+
"""
34+
...

0 commit comments

Comments
 (0)