The file has some hard coded language choices that should be removed to use kernel metadata for the document
## specifying kernels
if language == 'python':
ep = ExecutePreprocessor(timeout=-1, allow_errors=allow_errors, kernel_name='python3')
elif language == 'julia':
ep = ExecutePreprocessor(timeout=-1, allow_errors=allow_errors)
The file has some hard coded language choices that should be removed to use kernel metadata for the document