From 64581fc81b0e7842748f4b0d2adf4f8052b6c027 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 12 Oct 2019 19:40:32 -0400 Subject: [PATCH] pylint --- torba/setup.cfg | 1 + torba/torba/client/wallet.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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