fix Missing module docstring issue with other pep8

This commit is contained in:
surbhi 2018-07-03 15:45:42 +05:30
parent b4a0d8ad37
commit d7efd746f2
No known key found for this signature in database
GPG Key ID: 88928762974D3618
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
from bitmessagemain import main # import main method to run first for thread start
from bitmessagemain import main
# import main method to run first for thread start.
if __name__ == '__main__':
"""python main will call for bitmessage main to start threads."""
main()

View File

@ -92,12 +92,16 @@ class LoginScreen(BoxLayout):
return None
def sayexit(self):
"""This method will exit the application screen."""
print("**************************EXITING FROM APPLICATION*****************************")
shutdown.doCleanShutdown()
Window.close()
class MainApp(App):
"""The App class is the base for creating Kivy applications
Think of it as your main entry point into the Kivy run loop."""
def build(self):
"""To initialize an app with a widget tree, we need to override the build()
method in our app class and return the widget tree which we have constructed.."""
return LoginScreen()