Source code for limix.sh._file

[docs]def remove(filepath): """ Remove file. Parameters ---------- filepath : str File path. """ import os return os.remove(filepath)