Method: Fech::Filing#resave_f99_contents

Defined in:
lib/fech/filing.rb

#resave_f99_contentsObject

Resave the “fixed” version of an F99



303
304
305
306
307
# File 'lib/fech/filing.rb', line 303

def resave_f99_contents
  return true if @resaved
  File.open(custom_file_path, 'w') { |f| f.write(fix_f99_contents) }
  @resaved = true
end