Skip to content

Commit 2708d70

Browse files
committed
chore: ruff check --fix
1 parent c1e3a6a commit 2708d70

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

nextcloud_mcp_server/client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import os
2-
import datetime as dt
32
import mimetypes
43
from httpx import (
54
AsyncClient,
@@ -181,7 +180,7 @@ async def notes_append_content(self, *, note_id: int, content: str):
181180
current_note = await self.notes_get_note(note_id=note_id)
182181

183182
# Use fixed separator for consistency
184-
separator = f"\n---\n"
183+
separator = "\n---\n"
185184

186185
# Combine content
187186
existing_content = current_note.get("content", "")

tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import uuid
55
from nextcloud_mcp_server.client import NextcloudClient, HTTPStatusError
66
import asyncio
7-
import pytest_asyncio
87

98
logger = logging.getLogger(__name__)
109

0 commit comments

Comments
 (0)