Skip to content

Commit

Permalink
Change comment
Browse files Browse the repository at this point in the history
  • Loading branch information
deltamarnix committed Feb 9, 2024
1 parent fdf93e2 commit 930c537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/gen_python.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pythontype(::Type{<:AbstractString}) = "Series[str]"
pythontype(::Type{<:Integer}) = "Series[int]"
pythontype(::Type{<:AbstractFloat}) = "Series[float]"
pythontype(::Type{<:Number}) = "Series[float]"
pythontype(::Type{<:Bool}) = "Series[pa.BOOL]" # pa.BOOL is a nullable boolean type, bool is not
pythontype(::Type{<:Bool}) = "Series[pa.BOOL]" # pa.BOOL is a nullable boolean type, bool is not nullable
pythontype(::Type{<:Enum}) = "Series[str]"
pythontype(::Type{<:DateTime}) = "Series[Timestamp]"
pythontype(::Type{<:Any}) = "Series[Any]"
Expand Down

0 comments on commit 930c537

Please sign in to comment.