(connection)
| 43 | |
| 44 | |
| 45 | def unwrap_cursor(connection): |
| 46 | if hasattr(connection, "_graphene_cursor"): |
| 47 | previous_cursor = connection._graphene_cursor |
| 48 | connection.cursor = previous_cursor |
| 49 | del connection._graphene_cursor |
| 50 | |
| 51 | |
| 52 | class ExceptionCursorWrapper: |
no outgoing calls
no test coverage detected
searching dependent graphs…