(self, length, chars=string.ascii_letters + string.digits)
| 3899 | return None |
| 3900 | |
| 3901 | def random_string(self, length, chars=string.ascii_letters + string.digits): |
| 3902 | return ''.join(random.choice(chars) for _ in range(length)) |
| 3903 | |
| 3904 | def get_bizchannelinfo(self): |
| 3905 | info = { |
no outgoing calls
no test coverage detected