From ccf861573c85b6c9803951504a8fd78bb2bc0c3a Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Mon, 23 Dec 2019 12:15:18 +0200 Subject: [PATCH] CLN: Removed redundant 'int' --- pandas/_typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/_typing.py b/pandas/_typing.py index 445eff9e19e47..ae1e24ed87600 100644 --- a/pandas/_typing.py +++ b/pandas/_typing.py @@ -32,7 +32,7 @@ FilePathOrBuffer = Union[str, Path, IO[AnyStr]] FrameOrSeries = TypeVar("FrameOrSeries", bound="NDFrame") -Scalar = Union[str, int, float, bool] +Scalar = Union[str, float, bool] Axis = Union[str, int] Ordered = Optional[bool] JSONSerializable = Union[Scalar, List, Dict]