rockdoc / cdlparser

A python module for parsing files encoded in netCDF's common data form language (CDL)
BSD 3-Clause "New" or "Revised" License
2 stars 4 forks source link

Modify superclass delegation in CDL3Parser init method #17

Closed rockdoc closed 11 years ago

rockdoc commented 11 years ago

Use

super(CDL3Parser, self).__init__(**kw)

in preference to

CDL3Parser.__init__(self, **kw)