version bump

This commit is contained in:
Will McGugan 2021-08-29 15:34:13 +01:00
parent 6dea513447
commit f03b9b7fd8
9 changed files with 81 additions and 12 deletions

View file

@ -31,7 +31,7 @@ def test_rich_print():
def test_rich_print_json():
console = rich.get_console()
with console.capture() as capture:
rich.print_json('[false, true, null, "foo"]')
rich.print_json('[false, true, null, "foo"]', indent=4)
result = capture.get()
print(repr(result))
expected = '[\n false,\n true,\n null,\n "foo"\n]\n'