Michael Ekoka
Michael Ekoka
``` def _wrap_with_default_query_class(fn, cls): @functools.wraps(fn) def newfn(*args, **kwargs): _set_default_query_class(kwargs, cls) if "backref" in kwargs: backref = kwargs['backref'] if isinstance(backref, string_types): backref = (backref, {}) _set_default_query_class(backref[1], cls) return fn(*args, **kwargs) return...
### Is this a docs issue? - [X] My issue is about the documentation content or website ### Type of issue Other ### Description In the warning block at the...
To fix change: `.entries(this.tweetData)` to `.entries(this.tweetData.tweets)`
### Is this a docs issue? - [X] My issue is about the documentation content or website ### Type of issue Other ### Description Early in the document, there's this...