diff options
Diffstat (limited to 'doc/development/tutorials/examples/recipe.py')
-rw-r--r-- | doc/development/tutorials/examples/recipe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index 845628864..6bfd99900 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -117,7 +117,7 @@ class RecipeDomain(Domain): } def get_full_qualified_name(self, node): - return '{}.{}'.format('recipe', node.arguments[0]) + return f'recipe.{node.arguments[0]}' def get_objects(self): yield from self.data['recipes'] |