diff options
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(); |
