Skip to content

Commit 019c87d

Browse files
committed
anchors: Update code style to use single quotes
Like the rest of the project does.
1 parent 977f490 commit 019c87d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

yamllint/rules/anchors.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def check(conf, token, prev, next, nextnext, context):
168168
conf['forbid-unused-anchors']):
169169
if isinstance(token, yaml.AnchorToken):
170170
context['anchors'][token.value] = {
171-
"line": token.start_mark.line,
172-
"column": token.start_mark.column,
173-
"used": False
171+
'line': token.start_mark.line,
172+
'column': token.start_mark.column,
173+
'used': False
174174
}

0 commit comments

Comments
 (0)