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

PEP 8 imports order #213

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion mongokit/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,14 @@
# (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 warnings import warn

from pymongo.collection import Collection as PymongoCollection

from mongokit.mongo_exceptions import MultipleResultsFound
from mongokit.cursor import Cursor

from warnings import warn



class Collection(PymongoCollection):
Expand Down