1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

bitbake/event: fix some whitespace issues

Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
Joshua Lock
2011-01-13 18:30:02 +00:00
committed by Richard Purdie
parent 9b43eaff99
commit b14cda62d0
+1 -3
View File
@@ -354,7 +354,6 @@ class TargetsTreeGenerated(Event):
"""
Event when a set of buildable targets has been generated
"""
def __init__(self, model):
Event.__init__(self)
self._model = model
@@ -363,10 +362,9 @@ class ConfigFilesFound(Event):
"""
Event when a list of appropriate config files has been generated
"""
def __init__(self, variable, values):
Event.__init__(self)
self._variable = variable
self._variable = variable
self._values = values
class MsgBase(Event):