]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Remove uneeded import from code example
authorWichert Akkerman <wichert@wiggy.net>
Mon, 20 Jan 2014 09:59:20 +0000 (10:59 +0100)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 23 Jan 2014 17:40:18 +0000 (12:40 -0500)
This had me reread the code twice to see if I missed why the import was
present.

lib/sqlalchemy/ext/mutable.py

index 15840c57ead0f4831020de9cdab531bbfdfe6449..c7896637d406e118a08f2672bf55458b21e80bf5 100644 (file)
@@ -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):