Skip to content

Commit c6a0e67

Browse files
committed
Make most of arguments for read_json and read_html keyword-only.
1 parent 61362be commit c6a0e67

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pandas/io/html.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,7 @@ def _parse(flavor, io, match, attrs, encoding, displayed_only, **kwargs):
922922

923923
def read_html(
924924
io,
925+
*,
925926
match=".+",
926927
flavor=None,
927928
header=None,

pandas/io/json/_json.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@ def _write(
333333

334334
def read_json(
335335
path_or_buf=None,
336+
*,
336337
orient=None,
337338
typ="frame",
338339
dtype=None,

0 commit comments

Comments
 (0)