Skip to content
This repository has been archived by the owner on Jul 14, 2020. It is now read-only.

PEP 8 import order and style #214

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion mongokit/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from pymongo.cursor import Cursor as PymongoCursor
from collections import deque

from pymongo.cursor import Cursor as PymongoCursor



class Cursor(PymongoCursor):
def __init__(self, *args, **kwargs):
Expand Down