From fe31857c7d5b90c90784d83b12326c0ba80ff019 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 6 Nov 2024 23:27:55 -0600 Subject: fix pylint errors --- yoshi/cli.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'yoshi/cli.py') diff --git a/yoshi/cli.py b/yoshi/cli.py index 56abae7..e140098 100644 --- a/yoshi/cli.py +++ b/yoshi/cli.py @@ -5,11 +5,12 @@ It imports the required modules and sets up a parser with basic options for demo """ import argparse -import yoshi.crypto as crypto -import yoshi.database as database -import yoshi.process as process +from yoshi import crypto, database, process def yoshi(): + """ + CLI entry point logic, used to parse user inputs. + """ parser = argparse.ArgumentParser( description='Manage your username and passwords via a convenient CLI vault.' ) -- cgit v1.2.3-70-g09d2