Source code for oioioi.base.utils.finders

import shutil
from distutils import spawn


[docs]def find_executable_path(name): return shutil.which(name)