summaryrefslogtreecommitdiff
path: root/run_module_examples.py
diff options
context:
space:
mode:
authorpepperpepperpepper <pepper@scannerjammer.com>2015-11-16 15:19:30 -0800
committerpepperpepperpepper <pepper@scannerjammer.com>2015-11-16 15:19:30 -0800
commitf65284969e4cffb88914de49ace8850a7f41c836 (patch)
tree3c1e0c99abdb9a6376e47fac6a160dbb805967ff /run_module_examples.py
parent4b86f4b2bdfa6b11d8f8ed0f8adca8d3adfcc0c8 (diff)
parentc2f9f9ae233a4883b62afe54e9e45e5eb262e6f1 (diff)
resolved conflicts
Diffstat (limited to 'run_module_examples.py')
-rw-r--r--run_module_examples.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/run_module_examples.py b/run_module_examples.py
index 909c207..a6af4b5 100644
--- a/run_module_examples.py
+++ b/run_module_examples.py
@@ -2,9 +2,8 @@
"""calls the example_run method on all modules"""
from photoblaster.modules import Pb
for cls in Pb.__subclasses__():
- if cls.__name__ == "PbGradient":
- print cls.__name__
- instance = cls.example_run()
- instance.file_s3move()
- print instance.file_dict()
- instance.db_send();
+ print cls.__name__
+ instance = cls.example_run()
+ instance.file_s3move()
+ print instance.file_dict()
+ instance.db_send();