Skip to content

Commit 4d5f9ac

Browse files
committed
Unicode characters sneaking.
1 parent b4e46ee commit 4d5f9ac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

graphql/core/execution/base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from ..error import GraphQLError
24
from ..language import ast
35
from ..type.definition import (
@@ -163,7 +165,7 @@ def does_fragment_condition_match(ctx, fragment, type_):
163165

164166

165167
def get_field_entry_key(node):
166-
"""Implements the logic to compute the key of a given fields entry"""
168+
"""Implements the logic to compute the key of a given field's entry"""
167169
if node.alias:
168170
return node.alias.value
169171
return node.name.value

0 commit comments

Comments
 (0)