Mercurial > repos > crusoe > khmer
diff gedlab.py @ 52:3d65329a491d
PEP8 & params for do-partition
author | Michael R. Crusoe <mcrusoe@msu.edu> |
---|---|
date | Tue, 05 Aug 2014 17:30:32 -0400 |
parents | be178f712bb1 |
children |
line wrap: on
line diff
--- a/gedlab.py Sat Jul 12 17:05:57 2014 -0400 +++ b/gedlab.py Tue Aug 05 17:30:32 2014 -0400 @@ -9,16 +9,17 @@ log = logging.getLogger(__name__) -class Count( Binary ): + +class Count(Binary): - def __init__( self, **kwd ): - Binary.__init__( self, **kwd ) + def __init__(self, **kwd): + Binary.__init__(self, **kwd) -class Presence( Binary ): +class Presence(Binary): - def __init__( self, **kwd ): - Binary.__init__( self, **kwd ) + def __init__(self, **kwd): + Binary.__init__(self, **kwd) Binary.register_unsniffable_binary_ext("ct") Binary.register_unsniffable_binary_ext("pt")