proofit404 / stories

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

Deny to inherit from story class. #635

Closed proofit404 closed 2 years ago

proofit404 commented 3 years ago
class A1(Story):
    I.a1s1
    I.a1s2

class A2(A1): # error
    pass
proofit404 commented 2 years ago

Superseded by https://github.com/proofit404/generics/issues/222

It's a general advice to decorate story class with @private.