File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
src/main/java/org/scijava/plugins/scripting/python Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change 2929
3030package org .scijava .plugins .scripting .python ;
3131
32- import java .util .Arrays ;
33- import java .util .List ;
34-
3532import javax .script .ScriptEngine ;
3633
34+ import org .scijava .Priority ;
3735import org .scijava .plugin .Plugin ;
3836import org .scijava .script .AbstractScriptLanguage ;
3937import org .scijava .script .ScriptLanguage ;
4543 * @author Karl Duderstadt
4644 * @see ScriptEngine
4745 */
48- @ Plugin (type = ScriptLanguage .class , name = "Conda Python 3" )
46+ @ Plugin (type = ScriptLanguage .class , name = "Conda Python 3" , priority = Priority . VERY_LOW )
4947public class PythonScriptLanguage extends AbstractScriptLanguage {
5048
5149 @ Override
5250 public ScriptEngine getScriptEngine () {
5351 return new PythonScriptEngine (getContext ());
5452 }
5553
56- @ Override
57- public List <String > getExtensions () {
58- return Arrays .asList ("py" );
59- }
60-
6154}
You can’t perform that action at this time.
0 commit comments