-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug: parent is typed wrong #20
Comments
There are some issues with type inheritance due to "philosophical" differences between how it works in the Python stack we use (Not what I'm working with, so don't know the exact details). I think something similar to |
Thank you. But isn't Just need to make sure I understand what you mean and are proposing. |
But |
I see. Where would I look to contribute for this, if we go with Omit for now? |
Instead of typing
parent
asContext
, it should be typed asOmit<Context, "__entity_type__">
.Currently, it can't be set to anything that extends from Context, due to this.
I couldn't find the right place to set this in the code. Is that because this is set dynamically?
The text was updated successfully, but these errors were encountered: