Commit 5a656cc
committed
Handle printing queries with integer arguments
The GitHub v4 API uses integer argument for paging. Without this patch,
the code would attempt to run (essentially) `"last" + ": " + 10`, which
isn't valid in Python.
With this change, an argument value of `.args(last=10)` is correctly pretty-printed
as `(last: 10)`.1 parent 431ea35 commit 5a656cc
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| |||
0 commit comments