diff options
| author | pepperpepperpepper <pepper@scannerjammer.com> | 2015-11-16 15:08:02 -0800 |
|---|---|---|
| committer | pepperpepperpepper <pepper@scannerjammer.com> | 2015-11-16 15:08:02 -0800 |
| commit | c2f9f9ae233a4883b62afe54e9e45e5eb262e6f1 (patch) | |
| tree | a61da8d300a85377ca0a9dae6a0e8acf77124f52 /run_module_examples.py | |
| parent | b23102673935d7732668a3cb621fe03dbb29d044 (diff) | |
ready to merge to main branch
Diffstat (limited to 'run_module_examples.py')
| -rw-r--r-- | run_module_examples.py | 11 |
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(); |
