Skip to content
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

Type-Hints später verwenden #147

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

MHajoha
Copy link
Member

@MHajoha MHajoha commented Jan 14, 2025

Löst diesen Kommentar:

def get_mro_type_hint(klass: type, attr_name: str, bound: _T) -> _T:
    # FIXME: This function is called too early, when the classes referenced in forward refs may not be defined yet.

Fälle wie in tests/questionpy/test_attempt.py und tests/questionpy/test_qtype.py hatten bisher für einen Fehler gesorgt, weil wir die Type-Hints in __init_subclass__ resolven, was während der Klassen-Erstellung, also dort, wo die Subklasse definiert ist, aufgerufen wird. Zu dem Zeitpunkt könnten forward references a la options: "MyFormModel" aber noch ins leere zeigen, wenn MyFormModel erst darunter definiert wird.

Stattdessen habe ich die *_class-Attribute zu Klassen-Properties gemacht, sodass die forward references erst aufgelöst werden müssen, wenn sie das erste mal gebraucht werden.

Aus dem gleichen Grund kann ich auch validate_form nicht mehr in Question.__init_subclass__ verorten und habe es nach etwas hin- und herüberlegen nach QuestionTypeWrapper.__init__ geschoben.

Comment on lines +40 to +42
question_state_with_version_class: ClassVar[type[QuestionStateWithVersion]] = cached_class_property(
lambda cls: QuestionStateWithVersion[cls.options_class, cls.question_state_class] # type: ignore[name-defined]
)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NB: Keine Verwendung als Decorator (@cached_class_property), weil Mypy das nur versteht, wenn auch @classmethod dran ist, was dann wieder support in cached_class_property braucht, etc. So war es einfacher.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant