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