aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--LightInstallation.py4
2 files changed, 2 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index c9b568f..9d4e9cb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,4 @@
*.pyc
*.swp
+*.swo
+*.pyo
diff --git a/LightInstallation.py b/LightInstallation.py
index 48dee77..6546f7e 100644
--- a/LightInstallation.py
+++ b/LightInstallation.py
@@ -43,7 +43,6 @@ class LightInstallation:
self.registerComponents(self.inputs)
self.registerComponents(self.behaviors)
self.registerComponents(self.mappers)
- pdb.set_trace()
self.configureInstallation(installationConfig)
#Done initializing. Lets start this thing!
self.timer.stop()
@@ -130,9 +129,6 @@ class LightInstallation:
self.behaviors = self.initializeComponent(behaviorConfig)
for behavior in self.behaviors:
self.addBehavior(behavior)
- #TODO: we probably don't need this anymore :(
- def topologicalBehaviorSort(self):
- return Util.topologicalSort(self.behaviorDependencies)
#Does work needed to add a behavior: currently -- maps behavior inputs into
#the input behavior registry.
def addBehavior(self, behavior):