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