Set Draft Count staticmethod

This commit is contained in:
shekhar-cis 2022-04-01 13:12:57 +05:30
parent 70fa0622c6
commit f2d3618126
Signed by untrusted user: shekhar-cis
GPG Key ID: F4F00AB04E83F9A7

View File

@ -80,7 +80,8 @@ class Draft(Screen, HelperDraft):
xAddress, self.account, "draft", where, what,
False, start_indx, end_indx)
def set_draftCnt(self, Count): # pylint: disable=no-self-use
@staticmethod
def set_draftCnt(Count):
"""This method set the count of draft mails"""
draftCnt_obj = state.kivyapp.root.ids.content_drawer.ids.draft_cnt
draftCnt_obj.ids.badge_txt.text = showLimitedCnt(int(Count))