From e2aecc888c4278629944f43c28c31578cfaa3b6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Kl=C3=BCnder?= Date: Mon, 26 Aug 2024 21:09:03 +0200 Subject: [PATCH] remove comment that does no longer apply --- src/c3nav/editor/operations.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/c3nav/editor/operations.py b/src/c3nav/editor/operations.py index 872438c7..d1933e18 100644 --- a/src/c3nav/editor/operations.py +++ b/src/c3nav/editor/operations.py @@ -26,9 +26,6 @@ class ObjectReference(BaseSchema): @classmethod def from_instance(cls, instance: Model): - """ - This method will not convert the ID yet! - """ return cls(model=instance._meta.model_name, id=instance.pk)