You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Julia v1.10, I used Aqua to detect method ambiguities in my package impICNF/ContinuousNormalizingFlows.jl#356 and some of its report were related to this package:
Ambiguity #57convert(::Type{T}, str::ProgressLogging.ProgressString) where T<:AbstractString @ ProgressLogging ~/.julia/packages/ProgressLogging/6KXlp/src/ProgressLogging.jl:211convert(::Type{Union{SubString{String}, String}}, s::AbstractString) @ Base strings/substring.jl:64
Possible fix, define
convert(::Type{Union{SubString{String}, String}}, ::ProgressLogging.ProgressString)
Ambiguity #58convert(::Type{T}, str::ProgressLogging.ProgressString) where T<:AbstractString @ ProgressLogging ~/.julia/packages/ProgressLogging/6KXlp/src/ProgressLogging.jl:211convert(::Type{SubString{S}}, s::AbstractString) where S<:AbstractString @ Base strings/substring.jl:57
Possible fix, define
convert(::Type{SubString{S}}, ::ProgressLogging.ProgressString) where S<:AbstractString
I would appreciate your attention to this issue.
The text was updated successfully, but these errors were encountered:
In Julia v1.10, I used Aqua to detect method ambiguities in my package impICNF/ContinuousNormalizingFlows.jl#356 and some of its report were related to this package:
I would appreciate your attention to this issue.
The text was updated successfully, but these errors were encountered: