Skip to content

Commit f4d5784

Browse files
committed
Make code lint-congruent
1 parent 785e75a commit f4d5784

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/scyjava/_jvm.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@ def jvm_version() -> tuple[int, ...]:
105105
m = re.match('.* version "([^"]*)"', output)
106106
if not m:
107107
raise RuntimeError(
108-
"Inscrutable java command output:\n" +
109-
f"$ {java} -version\n" +
110-
output
108+
f"Inscrutable java command output:\n$ {java} -version\n{output}"
111109
)
112110

113111
v = m.group(1)

0 commit comments

Comments
 (0)