Class: Avm::EacPythonBase0::FileFormats::Base

Inherits:
Avm::EacGenericBase0::FileFormats::Base
  • Object
show all
Defined in:
lib/avm/eac_python_base0/file_formats/base.rb

Constant Summary collapse

VALID_BASENAMES =
%w[*.py].freeze
VALID_TYPES =
['x-python'].freeze

Instance Method Summary collapse

Instance Method Details

#internal_apply(files) ⇒ Object



13
14
15
16
# File 'lib/avm/eac_python_base0/file_formats/base.rb', line 13

def internal_apply(files)
  ::Avm::EacPythonBase0::Executables.yapf.command.append(['--in-place', *files]).system!
  super(files)
end