File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ dir=$(dirname "$0")
44cd " $dir /.."
55
66exitCode=0
7- black src tests
7+ black src it tests
88code=$? ; test $code -eq 0 || exitCode=$code
9- isort src tests
9+ isort src it tests
1010code=$? ; test $code -eq 0 || exitCode=$code
11- python -m flake8 src tests
11+ python -m flake8 src it tests
1212code=$? ; test $code -eq 0 || exitCode=$code
1313validate-pyproject pyproject.toml
1414code=$? ; test $code -eq 0 || exitCode=$code
Original file line number Diff line number Diff line change 66"""
77
88import sys
9+
910import scyjava
1011
11- scyjava .config .endpoints .extend ([
12- "org.scijava:scijava-common:2.94.2" ,
13- "org.scijava:scripting-python:MANAGED"
14- ])
12+ scyjava .config .endpoints .extend (
13+ ["org.scijava:scijava-common:2.94.2" , "org.scijava:scripting-python:MANAGED" ]
14+ )
1515
1616# Create minimal SciJava context with a ScriptService.
1717Context = scyjava .jimport ("org.scijava.Context" )
You can’t perform that action at this time.
0 commit comments