Fixed code quality

This commit is contained in:
shekhar-cis 2022-04-18 20:54:31 +05:30
parent f2d3618126
commit 3369379eba
Signed by untrusted user: shekhar-cis
GPG Key ID: F4F00AB04E83F9A7

View File

@ -1,21 +1,27 @@
import time
# pylint: disable=unused-argument, import-error, too-many-arguments
# pylint: disable=unnecessary-comprehension, no-member
"""
draft.py
==============
Draft screen
"""
import os
from bitmessagekivy import kivy_helper_search
from bmconfigparser import BMConfigParser
from helper_sql import sqlExecute
from functools import partial
from addresses import decodeAddress
import time
import os
from kivy.clock import Clock
from kivy.properties import (
ListProperty,
StringProperty
)
from kivy.uix.screenmanager import Screen
from kivymd.uix.label import MDLabel
import state
from bitmessagekivy import kivy_helper_search
from bitmessagekivy.baseclass.common import (
showLimitedCnt, toast, ThemeClsColor,
SwipeToDeleteItem, ShowTimeHistoy
@ -23,6 +29,12 @@ from bitmessagekivy.baseclass.common import (
from bitmessagekivy.baseclass.maildetail import MailDetail
from bitmessagekivy.baseclass.draft_widgets import HelperDraft
from bmconfigparser import BMConfigParser
from addresses import decodeAddress
import state
from helper_sql import sqlExecute
class Draft(Screen, HelperDraft):
"""Draft screen class for kivy Ui"""
@ -56,8 +68,9 @@ class Draft(Screen, HelperDraft):
xAddress = 'fromaddress'
self.ids.tag_label.text = ''
self.draftDataQuery(xAddress, where, what)
# state.msg_counter_objs.draft_cnt.children[0].children[0].text = showLimitedCnt(len(self.queryreturn))
# if state.msg_counter_objs:
# state.msg_counter_objs.draft_cnt.children[0].children[0].text = showLimitedCnt(len(self.queryreturn))
if self.queryreturn:
self.ids.tag_label.text = 'Draft'
self.set_draftCnt(state.draft_count)