Mercurial > repos > devteam > flanking_features
diff utils/odict.py @ 1:8307665c4b6c draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit a1517c9d22029095120643bbe2c8fa53754dd2b7
author | devteam |
---|---|
date | Wed, 11 Nov 2015 12:48:18 -0500 |
parents | 90100b587723 |
children |
line wrap: on
line diff
--- a/utils/odict.py Tue Apr 01 10:52:59 2014 -0400 +++ b/utils/odict.py Wed Nov 11 12:48:18 2015 -0500 @@ -4,6 +4,7 @@ from UserDict import UserDict + class odict(UserDict): """ http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/107747 @@ -12,7 +13,7 @@ added. Calling keys(), values(), items(), etc. will return results in this order. """ - def __init__( self, dict = None ): + def __init__( self, dict=None ): self._keys = [] UserDict.__init__( self, dict )