Skip to content

Commit

Permalink
Review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rok committed Oct 14, 2024
1 parent 583ba67 commit 20fe633
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions python/pyarrow/tests/test_extension_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -1977,6 +1977,5 @@ def test_json(storage_type, pickle_module):
for storage_type in (pa.int32(), pa.large_binary(), pa.float32()):
with pytest.raises(
pa.ArrowInvalid,
match="Invalid storage type for JsonExtensionType: " +
str(storage_type)):
match=f"Invalid storage type for JsonExtensionType: {storage_type}"):
pa.json_(storage_type)
1 change: 0 additions & 1 deletion python/pyarrow/types.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -5343,7 +5343,6 @@ def json_(DataType storage_type=utf8()):
The underlying data type. Can be on of the following types:
string, large_string, string_view.
Returns
-------
type : JsonType
Expand Down

0 comments on commit 20fe633

Please sign in to comment.