summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWichert Akkerman <wichert@wiggy.net>2014-01-20 10:59:20 +0100
committerWichert Akkerman <wichert@wiggy.net>2014-01-20 10:59:20 +0100
commitaca8ffa474d1a270b5334a6c926b1f19b23d426e (patch)
treecefb887d29fe7b71221719826e15435f56459b08
parent82c07837d9fbf67711945a3134d2c891e0594ab8 (diff)
downloadsqlalchemy-aca8ffa474d1a270b5334a6c926b1f19b23d426e.tar.gz
Remove uneeded import from code examplepr/60
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 82410031d..4e574935d 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):