Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ISSUE-1242] prevented weird exceptions related to integer handling
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. I chose f-strings for usability, but regardless of which direction, the issue should be addressed one of those ways.
- Loading branch information