Skip to content

Commit d1583a1

Browse files
committed
Formatting fix
1 parent 5b6195a commit d1583a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scyjava/_jvm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def jvm_version() -> str:
9898
except subprocess.CalledProcessError as e:
9999
raise RuntimeError("System call to java failed") from e
100100

101-
output = output.replace('\n', ' ').replace('\r', '')
101+
output = output.replace("\n", " ").replace("\r", "")
102102
m = re.match('.*version "(([0-9]+\\.)+[0-9]+)', output)
103103
if not m:
104104
raise RuntimeError(f"Inscrutable java command output:\n{output}")

0 commit comments

Comments
 (0)