(connection)
| 27 | return None, None |
| 28 | |
| 29 | def close_connection(connection): |
| 30 | if connection: |
| 31 | connection.close() |
| 32 | print("Connection closed.") |
| 33 | |
| 34 | def create_record(collection_key, serp_urls): |
| 35 | connection, cursor = create_connection() |
no outgoing calls
no test coverage detected