Skip to content

Commit

Permalink
🎨 format code
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Apr 2, 2024
1 parent 23e650c commit 0795fd8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmake_min_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def try_configure(binary: Path, cmake_parameters: List[str]) -> ConfigureResult:
proc.wait()

return ConfigureResult(
return_code=proc.returncode, stderr=proc.stderr.read().decode("utf-8") if proc.stderr else ""
return_code=proc.returncode,
stderr=proc.stderr.read().decode("utf-8") if proc.stderr else "",
)


Expand Down

0 comments on commit 0795fd8

Please sign in to comment.