Skip to content

Commit b02af62

Browse files
committed
Fix match args type hints
1 parent 37cb948 commit b02af62

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

stubs/bfp_rs/diff/diff_py.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Changed(Diff):
2020
new: Any
2121

2222
class NestedDiff(Diff):
23-
__match_args__ = ("nested",)
23+
__match_args__ = ("children", )
2424

2525
children: dict[str, Diff] | dict[int, Diff]
2626

stubs/bfp_rs/diff/merge_py.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Basic(Conflict):
1414
change2: Diff
1515

1616
class NestedConflict(Conflict):
17-
__match_args__ = ("nested", )
17+
__match_args__ = ("children", )
1818

1919
children: dict[str, Conflict] | dict[int, Conflict]
2020

0 commit comments

Comments
 (0)