From edba17e9a319afd057f6cbfef413e76dcc6113db Mon Sep 17 00:00:00 2001 From: Kharec Date: Thu, 18 Dec 2025 13:14:27 +0100 Subject: [PATCH] refactor: unify docstrings --- skywipe/auth.py | 2 +- skywipe/commands.py | 2 +- skywipe/configure.py | 2 +- skywipe/posts.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/skywipe/auth.py b/skywipe/auth.py index d5ea779..4f39460 100644 --- a/skywipe/auth.py +++ b/skywipe/auth.py @@ -1,4 +1,4 @@ -"""Authentication module for Skywipe CLI.""" +"""Authentication module for Skywipe""" from atproto import Client from skywipe.configure import Configuration diff --git a/skywipe/commands.py b/skywipe/commands.py index 5ef8fcf..53a13a2 100644 --- a/skywipe/commands.py +++ b/skywipe/commands.py @@ -1,4 +1,4 @@ -"""Command implementations for Skywipe CLI.""" +"""Command implementations for Skywipe""" from typing import Callable, Dict, Optional from skywipe.configure import Configuration diff --git a/skywipe/configure.py b/skywipe/configure.py index fff154c..d093a40 100644 --- a/skywipe/configure.py +++ b/skywipe/configure.py @@ -1,4 +1,4 @@ -"""Core configuration handling class and related logic.""" +"""Core configuration module for Skywipe""" import getpass from pathlib import Path diff --git a/skywipe/posts.py b/skywipe/posts.py index 58a907d..dc2a1f7 100644 --- a/skywipe/posts.py +++ b/skywipe/posts.py @@ -1,4 +1,4 @@ -"""Post deletion module for Skywipe CLI.""" +"""Post deletion module for Skywipe""" import time from skywipe.auth import Auth