JuliaAI/MLJFlow.jl

Remove an abstract type in a struct

ablaom opened this issue · 0 comments

ablaom commented

verbosity::Integer

Change verbosity::Integer to verbosity::Int.

Integer is abstract. Generally we avoid abstract types in structs. If we need a generic type we add a type parameter instead (not needed here).