We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f60166c commit fe1914bCopy full SHA for fe1914b
1 file changed
scyjava/config/__init__.py
@@ -41,11 +41,10 @@
41
42
43
def start_JVM(options=''):
44
- # set _options to the default options from pyimagej if none are specified
45
global _options
46
_options = options
47
48
- # if jvm JVM is already running -- break
+ # if JVM is already running -- break
49
if JVM_status() == True:
50
_logger.debug('The JVM is already running.')
51
return
@@ -112,7 +111,7 @@ def start_JVM(options=''):
112
111
if pathlib.Path(os.path.join(jvm_server_dir, 'jvm.dll')).is_file():
113
os.environ['PATH'] += ';' + jvm_server_dir
114
115
- # retrieve endpoint and repositories from scyjava_config
+ # retrieve endpoint and repositories from scyjava config
116
endpoints = get_endpoints()
117
repositories = get_repositories()
118
0 commit comments