file rename
This commit is contained in:
parent
216cc9d34c
commit
5bf6d04fdd
|
@ -4,12 +4,12 @@ import builtins
|
||||||
# Lib imports
|
# Lib imports
|
||||||
|
|
||||||
# Application imports
|
# Application imports
|
||||||
from signal_classes.DBusControllerMixin import DBusControllerMixin
|
from signal_classes import IPCServerMixin
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Builtins(DBusControllerMixin):
|
class Builtins(IPCServerMixin):
|
||||||
"""Docstring for __builtins__ extender"""
|
"""Docstring for __builtins__ extender"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
|
@ -15,7 +15,7 @@ def threaded(fn):
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class DBusControllerMixin:
|
class IPCServerMixin:
|
||||||
|
|
||||||
@threaded
|
@threaded
|
||||||
def create_ipc_server(self):
|
def create_ipc_server(self):
|
|
@ -2,8 +2,8 @@
|
||||||
Gtk Bound Signal Module
|
Gtk Bound Signal Module
|
||||||
"""
|
"""
|
||||||
from .mixins import *
|
from .mixins import *
|
||||||
from .DBusControllerMixin import DBusControllerMixin
|
|
||||||
from .KeyboardSignalsMixin import KeyboardSignalsMixin
|
from .KeyboardSignalsMixin import KeyboardSignalsMixin
|
||||||
from .ShowHideMixin import ShowHideMixin
|
from .ShowHideMixin import ShowHideMixin
|
||||||
|
from .IPCServerMixin import IPCServerMixin
|
||||||
from .Controller_Data import Controller_Data
|
from .Controller_Data import Controller_Data
|
||||||
from .Controller import Controller
|
from .Controller import Controller
|
||||||
|
|
Loading…
Reference in New Issue