Commit 480bc47
authored
[ISSUE-1242] prevented weird exceptions related to integer handling (#1244)
if keys or values in the response json are `int`s, the `k + ": " + v`
will fail because of an `int` is not a `str`. In order to avoid this,
we can either use `%`-formatting, `.format` formatting, or f-strings.
We chose `.format` for compatability, but regardless of which direction, the
issue should be addressed one of those ways.1 parent 15471bf commit 480bc47
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
481 | 481 | | |
482 | 482 | | |
483 | 483 | | |
484 | | - | |
| 484 | + | |
485 | 485 | | |
486 | 486 | | |
487 | 487 | | |
| |||
0 commit comments