Skip to content

Commit c6fc2b3

Browse files
committed
Fix type hint declaration
1 parent 4047c81 commit c6fc2b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scyjava/_jvm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def jvm_version() -> tuple[int, ...]:
146146
raise RuntimeError(f"Inscrutable java version: {v}")
147147

148148

149-
def start_jvm(options: Sequence[str] = None) -> None:
149+
def start_jvm(options: Sequence[str] | None = None) -> None:
150150
"""
151151
Explicitly connect to the Java virtual machine (JVM). Only one JVM can
152152
be active; does nothing if the JVM has already been started. Calling

0 commit comments

Comments
 (0)