Commit d1de4b0
authored
Fix a typo in a deprecation warning
The deprecation warning says :
```"variable_values has been deprecated. Please use values=... instead.",```
But, the key argument written here should be `variables` and not `values`, as it is written above at line 85 :
```if variables is None and "variable_values" in options:```1 parent 02605b1 commit d1de4b0
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | | - | |
| 87 | + | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
| |||
0 commit comments