1"""
2QuerySet is parametrized with model object
3"""
4class QuerySet(object):
5    def __init__(self, model=None, query=None, using=None, hints=None):
6        """
7        :rtype: django.db.models.query.QuerySet[T]
8        """
9        pass
10
11    def __iter__(self):
12        """
13
14        :rtype: collections.Iterator[T]
15        """
16        pass
17