]> 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)
committerWichert Akkerman <wichert@wiggy.net>
Mon, 20 Jan 2014 09:59:20 +0000 (10:59 +0100)
This had me reread the code twice to see if I missed why the import was
present.

lib/sqlalchemy/ext/mutable.py

index 82410031d02efa19b850ed5e94c0489dc72cd990..4e574935d8c33cc36fc52d18bea5557aa960dc34 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):