From: Wichert Akkerman Date: Mon, 20 Jan 2014 09:59:20 +0000 (+0100) Subject: Remove uneeded import from code example X-Git-Tag: rel_0_9_2~33^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aca8ffa474d1a270b5334a6c926b1f19b23d426e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Remove uneeded import from code example This had me reread the code twice to see if I missed why the import was present. --- diff --git a/lib/sqlalchemy/ext/mutable.py b/lib/sqlalchemy/ext/mutable.py index 82410031d0..4e574935d8 100644 --- a/lib/sqlalchemy/ext/mutable.py +++ b/lib/sqlalchemy/ext/mutable.py @@ -49,7 +49,6 @@ tracks all parents which reference it. Below, we illustrate the a simple version of the :class:`.MutableDict` dictionary object, which applies the :class:`.Mutable` mixin to a plain Python dictionary:: - import collections from sqlalchemy.ext.mutable import Mutable class MutableDict(Mutable, dict):