(fit, module, context, projectionRange, **kwargs)
| 240 | |
| 241 | @staticmethod |
| 242 | def handler(fit, module, context, projectionRange, **kwargs): |
| 243 | rt = module.getModifiedItemAttr('reloadTime') |
| 244 | if not rt: |
| 245 | # Set reload time to 10 seconds |
| 246 | module.reloadTime = 10000 |
| 247 | else: |
| 248 | module.reloadTime = rt |
| 249 | |
| 250 | |
| 251 | class Effect38(BaseEffect): |
nothing calls this directly
no test coverage detected