From 2e57afafab7b4ee765c207b73e86c71cec8841d4 Mon Sep 17 00:00:00 2001 From: Jason Hamilton Date: Sat, 26 Jul 2025 14:02:35 -0400 Subject: [PATCH] Fix black formatting for CI --- raindrop_cleanup/cli/main.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/raindrop_cleanup/cli/main.py b/raindrop_cleanup/cli/main.py index a7c486b..b7bfec1 100644 --- a/raindrop_cleanup/cli/main.py +++ b/raindrop_cleanup/cli/main.py @@ -186,7 +186,9 @@ def main() -> None: traceback.print_exc() -def _handle_resume_selection(sessions: Sequence[dict[str, Any]]) -> Optional[dict[str, Any]]: +def _handle_resume_selection( + sessions: Sequence[dict[str, Any]], +) -> Optional[dict[str, Any]]: """Handle selection of a resumable session.""" print("🔄 Choose a session to resume:") print("Enter number, or 'new' for a fresh session:") @@ -263,7 +265,9 @@ def _list_collections(collections: Sequence[dict[str, Any]]) -> None: print(f" 📁 {col['title']} ({count} items{processed_info}) - ID: {col['_id']}") -def _select_collection(collections: Sequence[dict[str, Any]]) -> Optional[dict[str, Any]]: +def _select_collection( + collections: Sequence[dict[str, Any]], +) -> Optional[dict[str, Any]]: """Interactively select a collection to process.""" from ..state.manager import StateManager