chore: ruff check --fix

This commit is contained in:
Chris Coutinho
2025-06-06 19:11:48 +02:00
parent c1e3a6aeaa
commit 2708d708b0
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
import os
import datetime as dt
import mimetypes
from httpx import (
AsyncClient,
@@ -181,7 +180,7 @@ class NextcloudClient:
current_note = await self.notes_get_note(note_id=note_id)
# Use fixed separator for consistency
separator = f"\n---\n"
separator = "\n---\n"
# Combine content
existing_content = current_note.get("content", "")
-1
View File
@@ -4,7 +4,6 @@ import logging
import uuid
from nextcloud_mcp_server.client import NextcloudClient, HTTPStatusError
import asyncio
import pytest_asyncio
logger = logging.getLogger(__name__)