Jaymon / pout

Python pretty print on steroids
MIT License
29 stars 0 forks source link

TypeValue is not displaying class properties from parent classes #81

Closed Jaymon closed 6 months ago

Jaymon commented 1 year ago

class Foo(object):
    one = "one"

class Bar(Foo):
    two = "two"

pout.v(Bar)

Will produce output like:

Bar class at NNNNNNN
    <
        properties:
             two = "two"
    >

Notice it doesn't have one = "one" but it should