krz/yoshi-cli

A password manager for the command line.

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

7fbb76569f40d5cab6603f7747991655bee6f171

verified · cmc

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

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

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