proofit404 / stories

Service objects designed with OOP in mind.
https://proofit404.github.io/stories/
BSD 2-Clause "Simplified" License
297 stars 21 forks source link

Examples for attrs library should use modern syntax. #717

Closed proofit404 closed 1 year ago

proofit404 commented 1 year ago

Does not work

@define
class Action(Story):
    do = field()

Does work

@attrs
class Action(Story):
    do = attrib()