summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWichert Akkerman <wichert@wiggy.net>2014-01-20 10:59:20 +0100
committerMike Bayer <mike_mp@zzzcomputing.com>2014-01-23 12:40:18 -0500
commit28fd486bd47bdb01abf24a8a903e0a73f32d6d67 (patch)
tree33c0eee2469388542a277e742d9aa282a3512997
parent21e012121a6918094c163521cf3a5e3ae037ba0f (diff)
downloadsqlalchemy-28fd486bd47bdb01abf24a8a903e0a73f32d6d67.tar.gz
Remove uneeded import from code example
This had me reread the code twice to see if I missed why the import was present.
-rw-r--r--lib/sqlalchemy/ext/mutable.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/ext/mutable.py b/lib/sqlalchemy/ext/mutable.py
index 15840c57e..c7896637d 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):