Skip to content

Commit

Permalink
removed Order TA
Browse files Browse the repository at this point in the history
  • Loading branch information
louisponet committed Apr 23, 2023
1 parent 4753c2f commit 7fc902c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/timearrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ function TimeSeries.TimeArray(l::AbstractLedger, cols = keys(components(l)))

try
t = TimeArray(l[T], tcomp)

if eltype(eltype(t).parameters[2]) != Float64
continue
end

out = out === nothing ? t : merge(out, t; method = :outer)
catch e
@warn "Method to convert $T into TimeArray not implemented yet."
Expand Down

2 comments on commit 7fc902c

@louisponet
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/82135

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.1 -m "<description of version>" 7fc902c91b3f5653c420011fc28a9fd4e4bc176f
git push origin v0.1.1

Please sign in to comment.