fixes after pull

This commit is contained in:
lakshyacis 2019-12-18 19:51:24 +05:30
parent c98d1a70f4
commit 3b115adf9c
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
3 changed files with 6 additions and 4 deletions

View File

@ -409,6 +409,7 @@ class MyAddress(Screen):
@staticmethod
def filter_address(address):
"""Method will filter the my address list data"""
# pylint: disable=deprecated-lambda
if filter(lambda x: (state.searcing_text).lower() in x, [
BMConfigParser().get(
address, 'label').lower(), address.lower()]):
@ -529,7 +530,7 @@ class AddressBook(Screen):
class SelectableRecycleBoxLayout(
FocusBehavior, LayoutSelectionBehavior, RecycleBoxLayout):
"""Adds selection and focus behaviour to the view"""
# pylint: disable = too-many-ancestors
# pylint: disable = too-many-ancestors, duplicate-bases
pass
@ -1586,6 +1587,7 @@ class NavigateApp(App): # pylint: disable=too-many-public-methods
msg_counter_objs.allmail_cnt.badge_text = state.all_count
def on_start(self):
"""Method activates on start"""
self.set_message_count()
@staticmethod
@ -2287,7 +2289,7 @@ class Draft(Screen):
try:
msg_count_objs = (
self.parent.parent.parent.parent.parent.parent.children[
2].children[0].ids)
2].children[0].ids)
except Exception:
msg_count_objs = self.parent.parent.parent.parent.parent.children[
2].children[0].ids

View File

@ -21,12 +21,12 @@ It resends messages when there has been no response:
# pylint: disable=relative-import, protected-access
import gc
import os
from datetime import datetime, timedelta
import time
import shared
import knownnodes
import queues
import shared
import state
import tr
from bmconfigparser import BMConfigParser

View File

@ -124,4 +124,4 @@ availabe_credit = 0
in_sent_method = False
in_search_mode = False
in_search_mode = False