From bc1c61f8d296c8cde246130b65605fba5515c58a Mon Sep 17 00:00:00 2001 From: adv0r <> Date: Thu, 21 May 2026 14:06:46 +0200 Subject: [PATCH] docs(lazyloading): fix duplicate "is" --- docs/patterns/lazyloading.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/lazyloading.rst b/docs/patterns/lazyloading.rst index 658a1cd4..208601ab 100644 --- a/docs/patterns/lazyloading.rst +++ b/docs/patterns/lazyloading.rst @@ -73,7 +73,7 @@ function but internally imports the real function on first use:: def __call__(self, *args, **kwargs): return self.view(*args, **kwargs) -What's important here is is that `__module__` and `__name__` are properly +What's important here is that `__module__` and `__name__` are properly set. This is used by Flask internally to figure out how to name the URL rules in case you don't provide a name for the rule yourself.