diff --git a/AKModel/models.py b/AKModel/models.py index 22e0012e8181e10e81fd0e6b6ef2b42fd65c7ae5..a649fd0dc49a5114d78ce140a64cb0c1cd3ee589 100644 --- a/AKModel/models.py +++ b/AKModel/models.py @@ -888,7 +888,7 @@ class AK(models.Model): Get a list of stringified representations of all owners :return: list of owners - :rtype: List[str] + :rtype: list[str] """ return ", ".join(str(owner) for owner in self.owners.all()) @@ -898,7 +898,7 @@ class AK(models.Model): Get a list of stringified representations of all durations of associated slots :return: list of durations - :rtype: List[str] + :rtype: list[str] """ return ", ".join(str(slot.duration_simplified) for slot in self.akslot_set.select_related('event').all()) @@ -1004,12 +1004,12 @@ class Room(models.Model): return self.title def as_json_dict(self) -> dict[str, Any]: - """Return a json string representation of this room object. + """Return a json representation of this room object. - :return: The json string representation is constructed + :return: The json dict representation is constructed following the input specification of the KoMa conference optimizer, cf. https://github.com/Die-KoMa/ak-plan-optimierung/wiki/Input-&-output-format - :rtype: str + :rtype: dict[str, Any] """ # local import to prevent cyclic import # pylint: disable=import-outside-toplevel @@ -1136,12 +1136,12 @@ class AKSlot(models.Model): super().save(force_insert, force_update, using, update_fields) def as_json_dict(self) -> dict[str, Any]: - """Return a json string representation of the AK object of this slot. + """Return a json representation of the AK object of this slot. - :return: The json string representation is constructed + :return: The json dict representation is constructed following the input specification of the KoMa conference optimizer, cf. https://github.com/Die-KoMa/ak-plan-optimierung/wiki/Input-&-output-format - :rtype: str + :rtype: dict[str, Any] """ # local import to prevent cyclic import # pylint: disable=import-outside-toplevel