mpybit pylint fixes

This commit is contained in:
lakshyacis 2019-09-16 18:19:07 +05:30
parent 3d80fe94c7
commit a25ce191bf
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB

View File

@ -612,7 +612,8 @@ class MyTextInput(TextInput):
class Payment(Screen): class Payment(Screen):
"""Payment Method.""" """Payment Method."""
def get_available_credits(self, instance): def get_available_credits(self, instance): # pylint: disable=no-self-use
"""Method helps to get the available credits"""
state.availabe_credit = instance.parent.children[1].text state.availabe_credit = instance.parent.children[1].text
existing_credits = state.kivyapp.root.ids.sc18.ids.ml.children[0].children[0].children[0].children[0].text existing_credits = state.kivyapp.root.ids.sc18.ids.ml.children[0].children[0].children[0].children[0].text
if len(existing_credits.split(' ')) > 1: if len(existing_credits.split(' ')) > 1:
@ -1470,7 +1471,7 @@ class NavigationDrawerTwoLineListItem(
def _update_specific_text_color(self, instance, value): def _update_specific_text_color(self, instance, value):
pass pass
def _set_active(self, active, list): def _set_active(self, active, list): # pylint: disable=redefined-builtin
pass pass