diff --git a/torba/setup.cfg b/torba/setup.cfg index 606714539..fe94b6414 100644 --- a/torba/setup.cfg +++ b/torba/setup.cfg @@ -11,6 +11,7 @@ ignore_missing_imports = True [pylint] ignore=words,server,workbench,rpc +max-parents=10 max-args=10 max-line-length=110 good-names=T,t,n,i,j,k,x,y,s,f,d,h,c,e,op,db,tx,io,cachedproperty,log,id diff --git a/torba/torba/client/wallet.py b/torba/torba/client/wallet.py index d64e2cea7..54355a797 100644 --- a/torba/torba/client/wallet.py +++ b/torba/torba/client/wallet.py @@ -4,8 +4,8 @@ import stat import json import zlib import typing -from collections import UserDict from typing import List, Sequence, MutableSequence, Optional +from collections import UserDict from hashlib import sha256 from operator import attrgetter from torba.client.hash import better_aes_encrypt, better_aes_decrypt