(self, opts)
| 152 | |
| 153 | @with_connection |
| 154 | def put_data(self, opts): |
| 155 | if 'action_type' not in opts: |
| 156 | raise Exception('Provide action_type key.') |
| 157 | if 'event_data' not in opts: |
| 158 | raise Exception('Provide event_data key.') |
| 159 | action_type = opts.pop('action_type') |
| 160 | if action_type == 'send_export': |
| 161 | return self.__send_export(opts) |
nothing calls this directly
no test coverage detected