Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Commit

Permalink
Add boolean type for types checker
Browse files Browse the repository at this point in the history
  • Loading branch information
densmirn committed Oct 30, 2019
1 parent c55ef91 commit 07f7468
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hpat/datatypes/hpat_pandas_series_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class AcceptedType(Enum):
int_ = (int, types.Integer),
float_ = (float, types.Float),
number = (int, float, types.Number),
bool_ = (bool, types.Boolean),
str_ = (str, types.UnicodeType, types.StringLiteral)


Expand Down

0 comments on commit 07f7468

Please sign in to comment.