summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2014-01-23 09:39:44 -0800
committermike bayer <mike_mp@zzzcomputing.com>2014-01-23 09:39:44 -0800
commit9fef2c314bef31758e878d03d7793e744f2562c6 (patch)
tree29c0b0a4b176806f839a258f392534b62e5ed425
parent7b90923eb1fe63384db6b463a152def07a4d0299 (diff)
parentaca8ffa474d1a270b5334a6c926b1f19b23d426e (diff)
downloadsqlalchemy-9fef2c314bef31758e878d03d7793e744f2562c6.tar.gz
Merge pull request #60 from wichert/mutable-doc-import
Remove uneeded import from code example
-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):