Skip to content

Commit

Permalink
Restore the missing arguments. Next determine the conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrameos committed Oct 19, 2024
1 parent 1efd1d8 commit 9a2a604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jpype/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def startJVM(
# Keep the current locale settings, else Java will replace them.
prior = [locale.getlocale(i) for i in categories]
# Start the JVM
_jpype.startup(jvmpath, jvmargs,
_jpype.startup(jvmpath, jvmargs + extra_jvm_args,
ignoreUnrecognized, convertStrings, interrupt)
# Collect required resources for operation
initializeResources()
Expand Down

0 comments on commit 9a2a604

Please sign in to comment.