[general] Minor refactoring

Shuffled some code around in an attempt to make it easier to read and
understand.
This commit is contained in:
Tobias Witek 2016-11-04 21:41:22 +01:00
parent 47935942f0
commit 55474aadc3
3 changed files with 9 additions and 11 deletions

View file

@ -1,5 +1,9 @@
import threading
def output(args):
import bumblebee.outputs.i3
return bumblebee.outputs.i3.Output(args)
class Output(object):
def __init__(self, args):
self._callbacks = {}