Add timed input for inactivity and tests

This commit is contained in:
thePR0M3TH3AN
2025-07-02 23:30:26 -04:00
parent ec4bc51e1f
commit d270236a41
6 changed files with 81 additions and 6 deletions

View File

@@ -21,6 +21,7 @@ try:
canonical_json_dumps,
)
from .password_prompt import prompt_for_password
from .input_utils import timed_input
if logger.isEnabledFor(logging.DEBUG):
logger.info("Modules imported successfully.")
@@ -41,4 +42,5 @@ __all__ = [
"exclusive_lock",
"shared_lock",
"prompt_for_password",
"timed_input",
]