Skip to content

Commit

Permalink
Removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Furr committed Jul 13, 2018
1 parent b393639 commit 1955006
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions mongoengine/base/datastructures.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,18 +112,12 @@ class BaseList(list):
_name = None

def __init__(self, list_items, instance, name):
print("BaseList.__init__")
print("list_items: %s" % list_items)
print("instance: %s" % instance)
print("name: %s" % name)
Document = _import_class('Document')
EmbeddedDocument = _import_class('EmbeddedDocument')

if isinstance(instance, (Document, EmbeddedDocument)):
self._instance = weakref.proxy(instance)
self._name = name
print("BaseList.__init__ _instance(%s)" % self._instance)
print("----------------------------\n")
super(BaseList, self).__init__(list_items)

def __getitem__(self, key, *args, **kwargs):
Expand Down

0 comments on commit 1955006

Please sign in to comment.