diff utils/odict.py @ 1:850c05b9af00 draft

planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
author devteam
date Tue, 13 Oct 2015 12:50:14 -0400
parents e928e029f6eb
children
line wrap: on
line diff
--- a/utils/odict.py	Tue Apr 01 09:13:13 2014 -0400
+++ b/utils/odict.py	Tue Oct 13 12:50:14 2015 -0400
@@ -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 )