Fix pylint Instance of 'str' has no 'ids' member issue
This commit is contained in:
parent
abd3e02d72
commit
a5833be1b7
|
@ -35,21 +35,21 @@ class NavigateApp(App, TextInput):
|
||||||
An application can be built if you return a widget on build(), or if you set
|
An application can be built if you return a widget on build(), or if you set
|
||||||
self.root.
|
self.root.
|
||||||
"""
|
"""
|
||||||
state.main_widget = Builder.load_file(
|
main_widget = Builder.load_file(
|
||||||
os.path.join(os.path.dirname(__file__), 'main.kv'))
|
os.path.join(os.path.dirname(__file__), 'main.kv'))
|
||||||
self.nav_drawer = Navigator()
|
self.nav_drawer = Navigator()
|
||||||
return state.main_widget
|
return main_widget
|
||||||
|
|
||||||
def getCurrentAccountData(self, text):
|
def getCurrentAccountData(self, text):
|
||||||
"""Get Current Address Account Data."""
|
"""Get Current Address Account Data."""
|
||||||
state.association = text
|
state.association = text
|
||||||
state.main_widget.ids.sc1.clear_widgets()
|
self.root.ids.sc1.clear_widgets()
|
||||||
state.main_widget.ids.sc2.clear_widgets()
|
self.root.ids.sc2.clear_widgets()
|
||||||
state.main_widget.ids.sc3.clear_widgets()
|
self.root.ids.sc3.clear_widgets()
|
||||||
state.main_widget.ids.sc1.add_widget(Inbox())
|
self.root.ids.sc1.add_widget(Inbox())
|
||||||
state.main_widget.ids.sc2.add_widget(Sent())
|
self.root.ids.sc2.add_widget(Sent())
|
||||||
state.main_widget.ids.sc3.add_widget(Trash())
|
self.root.ids.sc3.add_widget(Trash())
|
||||||
state.main_widget.ids.toolbar.title = BMConfigParser().get(
|
self.root.ids.toolbar.title = BMConfigParser().get(
|
||||||
state.association, 'label') + '({})'.format(state.association)
|
state.association, 'label') + '({})'.format(state.association)
|
||||||
Inbox()
|
Inbox()
|
||||||
Sent()
|
Sent()
|
||||||
|
|
|
@ -72,5 +72,3 @@ testmode = False
|
||||||
kivy = False
|
kivy = False
|
||||||
|
|
||||||
association = ''
|
association = ''
|
||||||
|
|
||||||
main_widget = ''
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user