From 6a88ab8560600e9d18e156dc4378fab4c339dd7c Mon Sep 17 00:00:00 2001 From: Kharec Date: Wed, 31 Dec 2025 08:22:27 +0100 Subject: [PATCH] refactor: import getpass directly --- skywipe/configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skywipe/configure.py b/skywipe/configure.py index 60b5a2a..71dd3db 100644 --- a/skywipe/configure.py +++ b/skywipe/configure.py @@ -1,6 +1,6 @@ """Core configuration module for Skywipe""" -import getpass +from getpass import getpass import re from pathlib import Path from typing import NamedTuple @@ -81,7 +81,7 @@ class Configuration: logger.info("Please enter a valid handle and try again.") while True: - password = getpass.getpass( + password = getpass( "Bluesky (hopefully app) password: ").strip() is_valid, error_msg = _validate_password(password) if is_valid: