Fixed code quality
This commit is contained in:
parent
f2d3618126
commit
3369379eba
|
@ -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 functools import partial
|
||||||
from addresses import decodeAddress
|
import time
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
from kivy.clock import Clock
|
from kivy.clock import Clock
|
||||||
from kivy.properties import (
|
from kivy.properties import (
|
||||||
ListProperty,
|
ListProperty,
|
||||||
StringProperty
|
StringProperty
|
||||||
)
|
)
|
||||||
from kivy.uix.screenmanager import Screen
|
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 (
|
from bitmessagekivy.baseclass.common import (
|
||||||
showLimitedCnt, toast, ThemeClsColor,
|
showLimitedCnt, toast, ThemeClsColor,
|
||||||
SwipeToDeleteItem, ShowTimeHistoy
|
SwipeToDeleteItem, ShowTimeHistoy
|
||||||
|
@ -23,6 +29,12 @@ from bitmessagekivy.baseclass.common import (
|
||||||
from bitmessagekivy.baseclass.maildetail import MailDetail
|
from bitmessagekivy.baseclass.maildetail import MailDetail
|
||||||
from bitmessagekivy.baseclass.draft_widgets import HelperDraft
|
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):
|
class Draft(Screen, HelperDraft):
|
||||||
"""Draft screen class for kivy Ui"""
|
"""Draft screen class for kivy Ui"""
|
||||||
|
@ -56,8 +68,9 @@ class Draft(Screen, HelperDraft):
|
||||||
xAddress = 'fromaddress'
|
xAddress = 'fromaddress'
|
||||||
self.ids.tag_label.text = ''
|
self.ids.tag_label.text = ''
|
||||||
self.draftDataQuery(xAddress, where, what)
|
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:
|
# if state.msg_counter_objs:
|
||||||
# state.msg_counter_objs.draft_cnt.children[0].children[0].text = showLimitedCnt(len(self.queryreturn))
|
|
||||||
if self.queryreturn:
|
if self.queryreturn:
|
||||||
self.ids.tag_label.text = 'Draft'
|
self.ids.tag_label.text = 'Draft'
|
||||||
self.set_draftCnt(state.draft_count)
|
self.set_draftCnt(state.draft_count)
|
||||||
|
|
Reference in New Issue
Block a user