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

Commit

Permalink
fix #131 - Use PEP8 recommendation for import
Browse files Browse the repository at this point in the history
  • Loading branch information
namlook committed Aug 8, 2013
1 parent 287fedf commit c6fe42f
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions mongokit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,14 @@
from connection import Connection, MongoClient
from master_slave_connection import MasterSlaveConnection
from replica_set_connection import ReplicaSetConnection
from pymongo import ASCENDING as INDEX_ASCENDING,\
DESCENDING as INDEX_DESCENDING,\
ALL as INDEX_ALL,\
GEO2D as INDEX_GEO2D,\
GEOHAYSTACK as INDEX_GEOHAYSTACK,\
GEOSPHERE as INDEX_GEOSPHERE,\
OFF as INDEX_OFF, \
from pymongo import (
ASCENDING as INDEX_ASCENDING,
DESCENDING as INDEX_DESCENDING,
ALL as INDEX_ALL,
GEO2D as INDEX_GEO2D,
GEOHAYSTACK as INDEX_GEOHAYSTACK,
GEOSPHERE as INDEX_GEOSPHERE,
OFF as INDEX_OFF,
HASHED as INDEX_HASHED
)
from migration import DocumentMigration

0 comments on commit c6fe42f

Please sign in to comment.