Skip to content

Commit 0b4e03c

Browse files
committed
chore: exclude_prefixed를 keyword-only로
1 parent 033ab85 commit 0b4e03c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/httpc/_parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def extract_next_data(self, prefix_to_ignore: typing.Container | None = None) ->
6969
next_data = extract_next_data(scripts, prefix_to_ignore=prefix_to_ignore)
7070
return next_data
7171

72-
def next_data(self, exclude_prefixed: bool = True) -> dict[str, typing.Any]:
72+
def next_data(self, *, exclude_prefixed: bool = True) -> dict[str, typing.Any]:
7373
prefix_to_ignore = ("HL", "I") if exclude_prefixed else None
7474
next_data = self.extract_next_data(prefix_to_ignore=prefix_to_ignore)
7575
return {

0 commit comments

Comments
 (0)