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_8_5~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28fd486bd47bdb01abf24a8a903e0a73f32d6d67;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 15840c57ea..c7896637d4 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):