Skip to content
This repository was archived by the owner on Feb 17, 2021. It is now read-only.

Commit 699f124

Browse files
committed
Make List upper case to be consistent
1 parent 119baa8 commit 699f124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas-stubs/core/series.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ from .strings import StringMethods
2525

2626
_str = str # needed because Series has a property called "str"...
2727

28-
_DType = TypeVar("_DType", _str, bool, int, float, object, _np.ndarray, list)
28+
_DType = TypeVar("_DType", _str, bool, int, float, object, _np.ndarray, List)
2929
_ListLike = Union[_np.ndarray, List[_DType], Dict[_str, _np.ndarray]]
3030
# dtypes for numpy
3131
_DTypeNp = TypeVar(

0 commit comments

Comments
 (0)