(pipe)
| 136 | print(redis_helper.smembers("fruits")) |
| 137 | |
| 138 | def transaction_example(pipe): |
| 139 | pipe.incr("counter") |
| 140 | pipe.decr("balance") |
| 141 | redis_helper.execute_transaction(transaction_example) |
| 142 | |
| 143 | def message_handler(channel, message): |
nothing calls this directly
no outgoing calls
no test coverage detected