krz/yoshi-cli

A password manager for the command line.

clone: git clone https://gitbay.org/krz/yoshi-cli.git

40128fb5b69b54b53dbff84c2cb069fa5b77b635

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2024-11-07T03:19:25Z

disable certain pylint warnings
 account.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/account.py b/account.py
index 6ff1dfe..79fcc13 100644
--- a/account.py
+++ b/account.py
@@ -11,7 +11,8 @@ import database
 class Account:
     """Represents a login account."""
 
-    def __init__(self, uuid: str, application: str, username: str,
+    def __init__(self, uuid: str, application: str, #pylint: disable=R0913,R0917
+                 username: str, #pylint: disable=R0913,R0917
                  password: str, url: str) -> None: #pylint: disable=R0913,R0917
         self.uuid = uuid
         self.application = application