Giter Site home page Giter Site logo

Comments (1)

dairiki avatar dairiki commented on June 12, 2024

The issue is that, when class_dec calls class_schema, Tree is not yet accessible via the global (module) namespace. That doesn't happen until just after the class decorators are applied.

I suppose we could special-case the self-referential case: have class_schema look a the name of the class, so that self-type-references would work.
That seems pretty hacky though, and it still wouldn't fix the case where forward type references are involved, e.g.:

@class_dec
@dataclasses.dataclass
class Tree:
    name: str
    children: "Children"

@dataclass
class Children:
    trees: List[Tree]

I'm thinking the is probably not fixable (or not worth fixing). The solution, in your case, might be to have the class decorator defer its call to class_schema as long as possible. (Hopefully, until after the module is fully loaded.)

(The marshmallow_dataclass.dataclass decorator does essentially this, by using a LazyClassAttribute descriptor to defer the computation of the dataclass' .Schema attribute.)

Closing. (Feel free to reopen, if you can come up with a clean way to fix this.)

from marshmallow_dataclass.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.