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
the Property.value accessor methods currently use a print statement. Refactor to a proper deprecation warning using the warnings module.
in Property.__init__ the value can be keyword set, but does not elicit the deprecation warning.
in the Section.create_property() method value can be set as a keyword argument, but values can not. Refactor so that values can also be keyword set and that the usage of the value keyword elicits a deprecation warning.
The text was updated successfully, but these errors were encountered:
The
Property.value
attribute is deprecated!Property.value
accessor methods currently use a print statement. Refactor to a proper deprecation warning using thewarnings
module.Property.__init__
thevalue
can be keyword set, but does not elicit the deprecation warning.Section.create_property()
methodvalue
can be set as a keyword argument, butvalues
can not. Refactor so thatvalues
can also be keyword set and that the usage of thevalue
keyword elicits a deprecation warning.The text was updated successfully, but these errors were encountered: