chore: linting
Some checks failed
Obsidian Plugin Lint / lint (push) Has been cancelled

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-04-27 14:04:50 -07:00
parent f607636ba6
commit 8d50f90060
74 changed files with 1135 additions and 693 deletions

View file

@ -45,9 +45,7 @@ async def test_file_write_intent_injects_contract_message():
@pytest.mark.asyncio
async def test_non_write_intent_does_not_inject_contract_message():
llm = _FakeLLM(
'{"intent":"file_read","confidence":0.88,"suggested_filename":null}'
)
llm = _FakeLLM('{"intent":"file_read","confidence":0.88,"suggested_filename":null}')
middleware = FileIntentMiddleware(llm=llm)
original_messages = [HumanMessage(content="Read /notes.md")]
state = {"messages": original_messages, "turn_id": "abc:def"}
@ -55,7 +53,10 @@ async def test_non_write_intent_does_not_inject_contract_message():
result = await middleware.abefore_agent(state, runtime=None) # type: ignore[arg-type]
assert result is not None
assert result["file_operation_contract"]["intent"] == FileOperationIntent.FILE_READ.value
assert (
result["file_operation_contract"]["intent"]
== FileOperationIntent.FILE_READ.value
)
assert "messages" not in result
@ -211,4 +212,3 @@ def test_fallback_path_keeps_posix_style_absolute_path_for_linux_and_macos() ->
)
assert resolved == "/var/log/surfsense/notes.md"

View file

@ -2,11 +2,11 @@ from pathlib import Path
import pytest
from app.agents.new_chat.filesystem_selection import FilesystemMode
from app.agents.new_chat.middleware.filesystem import SurfSenseFilesystemMiddleware
from app.agents.new_chat.middleware.multi_root_local_folder_backend import (
MultiRootLocalFolderBackend,
)
from app.agents.new_chat.filesystem_selection import FilesystemMode
from app.agents.new_chat.middleware.filesystem import SurfSenseFilesystemMiddleware
pytestmark = pytest.mark.unit

View file

@ -15,7 +15,6 @@ from app.services.obsidian_plugin_indexer import (
_require_extracted_attachment_content,
)
_FAKE_PNG_B64 = base64.b64encode(b"\x89PNG\r\n\x1a\n").decode("ascii")
@ -102,9 +101,7 @@ async def test_extract_binary_attachment_markdown_uses_etl(monkeypatch) -> None:
mime_type="application/pdf",
)
async def _fake_run_etl_extract( # noqa: ANN001
*, file_path, filename, vision_llm
):
async def _fake_run_etl_extract(*, file_path, filename, vision_llm):
assert filename == "spec.pdf"
assert file_path
assert vision_llm is None
@ -216,7 +213,7 @@ def test_note_payload_rejects_markdown_with_binary_fields() -> None:
def test_require_extracted_attachment_content_rejects_empty_content() -> None:
with pytest.raises(
RuntimeError, match="Attachment extraction failed for assets/img.png"
RuntimeError, match=r"Attachment extraction failed for assets/img\.png"
):
_require_extracted_attachment_content(
content=" ",

View file

@ -45,4 +45,3 @@ def test_contract_enforcement_local_only():
result.filesystem_mode = "cloud"
assert not _contract_enforcement_active(result)