Skip to content

Commit

Permalink
anchors: Update code style to use single quotes
Browse files Browse the repository at this point in the history
Like the rest of the project does.
  • Loading branch information
adrienverge committed May 10, 2023
1 parent 977f490 commit 019c87d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions yamllint/rules/anchors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 019c87d

Please sign in to comment.