chore: ruff check --fix
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
import os
|
import os
|
||||||
import datetime as dt
|
|
||||||
import mimetypes
|
import mimetypes
|
||||||
from httpx import (
|
from httpx import (
|
||||||
AsyncClient,
|
AsyncClient,
|
||||||
@@ -181,7 +180,7 @@ class NextcloudClient:
|
|||||||
current_note = await self.notes_get_note(note_id=note_id)
|
current_note = await self.notes_get_note(note_id=note_id)
|
||||||
|
|
||||||
# Use fixed separator for consistency
|
# Use fixed separator for consistency
|
||||||
separator = f"\n---\n"
|
separator = "\n---\n"
|
||||||
|
|
||||||
# Combine content
|
# Combine content
|
||||||
existing_content = current_note.get("content", "")
|
existing_content = current_note.get("content", "")
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import logging
|
|||||||
import uuid
|
import uuid
|
||||||
from nextcloud_mcp_server.client import NextcloudClient, HTTPStatusError
|
from nextcloud_mcp_server.client import NextcloudClient, HTTPStatusError
|
||||||
import asyncio
|
import asyncio
|
||||||
import pytest_asyncio
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user