From 043ebbb29eeaf2d5fc5dda8ab25c41b3228e4a05 Mon Sep 17 00:00:00 2001 From: antoliny0919 Date: Sun, 15 Dec 2024 16:41:59 +0900 Subject: [PATCH] Fixed comments that do not reflect the PostGenerationContext changes. --- factory/declarations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factory/declarations.py b/factory/declarations.py index 951b45f3..f835f0d2 100644 --- a/factory/declarations.py +++ b/factory/declarations.py @@ -657,7 +657,7 @@ def call(self, instance, step, context): # pragma: no cover Args: instance (object): the newly generated object step (bool): whether the object was 'built' or 'created' - context: a builder.PostGenerationContext containing values + context: a declarations.PostGenerationContext containing values extracted from the containing factory's declaration """ raise NotImplementedError()