Skip to content
This repository was archived by the owner on Jul 14, 2020. It is now read-only.
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
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