Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e895160

Browse files
committedDec 23, 2024
fix: Allow end=None in patch operation
- Removed the end parameter validation from EditPatch model - Now end=None means the patch will be applied to the end of file - Added test case for end=None scenario - Updated test_models.py to reflect the new behavior
1 parent eb77392 commit e895160

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed
 

‎src/mcp_text_editor/models.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,10 @@ class EditPatch(BaseModel):
3535

3636
@model_validator(mode="after")
3737
def validate_end_line(self) -> "EditPatch":
38-
"""Validate that end line is present when not in append mode."""
38+
"""Validate that range_hash is set."""
3939
# range_hash must be explicitly set
4040
if self.range_hash is None:
4141
raise ValueError("range_hash is required")
42-
43-
# For modifications (non-empty range_hash), end is required
44-
if self.range_hash != "" and self.end is None:
45-
raise ValueError("end line is required when not in append mode")
4642
return self
4743

4844

‎tests/test_models.py

-6
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,6 @@ def test_edit_patch():
7474
with pytest.raises(ValidationError):
7575
EditPatch()
7676

77-
# Test validation error - missing end in modification mode
78-
with pytest.raises(
79-
ValueError, match="end line is required when not in append mode"
80-
):
81-
EditPatch(start=1, contents="content", range_hash="somehash")
82-
8377

8478
def test_edit_file_operation():
8579
"""Test EditFileOperation model."""

0 commit comments

Comments
 (0)
Please sign in to comment.