diff --git a/pysatNASA/instruments/cnofs_vefi.py b/pysatNASA/instruments/cnofs_vefi.py index f2e4bf24..16cdc3b3 100644 --- a/pysatNASA/instruments/cnofs_vefi.py +++ b/pysatNASA/instruments/cnofs_vefi.py @@ -62,7 +62,6 @@ import datetime as dt import functools -import numpy as np from pysat.instruments.methods import general as mm_gen @@ -91,21 +90,8 @@ init = functools.partial(mm_nasa.init, module=mm_cnofs, name=name) -def clean(self): - """Clean VEFI data to the specified level. - - Note - ---- - 'dusty' or 'clean' removes data when interpolation flag is set to 1 - 'dirty' is the same as 'none' - - """ - - if (self.clean_level == 'dusty') | (self.clean_level == 'clean'): - idx, = np.where(self['B_flag'] == 0) - self.data = self[idx, :] - - return +# Use default clean +clean = mm_nasa.clean # ----------------------------------------------------------------------------