From 019c87d36d0561cd941ee2cb428c5f63a59c052b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Wed, 10 May 2023 06:51:36 +0200 Subject: [PATCH] anchors: Update code style to use single quotes Like the rest of the project does. --- yamllint/rules/anchors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yamllint/rules/anchors.py b/yamllint/rules/anchors.py index 83f29db2..343f38b7 100644 --- a/yamllint/rules/anchors.py +++ b/yamllint/rules/anchors.py @@ -168,7 +168,7 @@ def check(conf, token, prev, next, nextnext, context): conf['forbid-unused-anchors']): if isinstance(token, yaml.AnchorToken): context['anchors'][token.value] = { - "line": token.start_mark.line, - "column": token.start_mark.column, - "used": False + 'line': token.start_mark.line, + 'column': token.start_mark.column, + 'used': False }