removed unnecessary Plots qualifier

This commit is contained in:
Michael K. Borregaard 2017-02-09 00:12:16 +01:00
parent 51a47cb2b1
commit 82161e60bc

View File

@ -1,8 +1,8 @@
const _attribute_defaults = Dict(:Series => Plots._series_defaults, const _attribute_defaults = Dict(:Series => _series_defaults,
:Subplot => Plots._subplot_defaults, :Subplot => _subplot_defaults,
:Plot => Plots._plot_defaults, :Plot => _plot_defaults,
:Axis => Plots._axis_defaults) :Axis => _axis_defaults)
attrtypes() = join(keys(_attribute_defaults), ", ") attrtypes() = join(keys(_attribute_defaults), ", ")
attributes(attrtype::Symbol) = sort(collect(keys(_attribute_defaults[attrtype]))) attributes(attrtype::Symbol) = sort(collect(keys(_attribute_defaults[attrtype])))