Skip to content

Commit 9202021

Browse files
authored
Merge pull request #200 from wbwlkr/fix-typo-in-deprecation-warning
Fix a typo in a deprecation warning
2 parents 02605b1 + d1de4b0 commit 9202021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql/execution/executor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def execute(
8484
context = options["context_value"]
8585
if variables is None and "variable_values" in options:
8686
warnings.warn(
87-
"variable_values has been deprecated. Please use values=... instead.",
87+
"variable_values has been deprecated. Please use variables=... instead.",
8888
category=DeprecationWarning,
8989
stacklevel=2,
9090
)

0 commit comments

Comments
 (0)