(length)
| 7 | from shared.regular import regular_methods |
| 8 | from shared.permissions.project_permissions import Project_permissions |
| 9 | def create_random_string(length): |
| 10 | return ''.join(random.choice(string.ascii_lowercase + \ |
| 11 | string.digits) for x in range(length)) |
| 12 | |
| 13 | |
| 14 | def add_auth_to_session(session, user): |
no outgoing calls
no test coverage detected