Fixing missing empty init files
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Base module
|
||||
"""
|
||||
|
@@ -15,7 +15,7 @@ gi.require_version('Gtk', '3.0')
|
||||
from gi.repository import Gtk
|
||||
|
||||
# Application imports
|
||||
from main import Main
|
||||
from app import Application
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
@@ -35,7 +35,7 @@ if __name__ == "__main__":
|
||||
# Read arguments (If any...)
|
||||
args, unknownargs = parser.parse_known_args()
|
||||
|
||||
Main(args, unknownargs)
|
||||
Application(args, unknownargs)
|
||||
Gtk.main()
|
||||
except Exception as e:
|
||||
traceback.print_exc()
|
||||
|
@@ -11,7 +11,7 @@ from __builtins__ import EventSystem
|
||||
|
||||
|
||||
|
||||
class Main(EventSystem):
|
||||
class Application(EventSystem):
|
||||
""" Create Settings and Controller classes. Bind signal to Builder. Inherit from Builtins to bind global methods and classes. """
|
||||
|
||||
def __init__(self, args, unknownargs):
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Mixins module
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
UI module
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Signals module
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Root of ShellFM
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Window module
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Tabs module
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Icons module
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Icons mixins module
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Utils module
|
||||
"""
|
||||
|
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
Trasher module
|
||||
"""
|
||||
|
Reference in New Issue
Block a user