Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
[ci skip-rust]
[ci skip-build-wheels]
  • Loading branch information
Eric-Arellano committed Feb 17, 2021
1 parent 15227fa commit 03820c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/python/pants/option/global_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ def from_options(cls, options: Options) -> ExecutionOptions:
remote_address_scheme = "https://" if bootstrap_options.remote_ca_certs_path else "http://"
remote_execution_address = (
f"{remote_address_scheme}{bootstrap_options.remote_execution_server}"
if bootstrap_options.remote_execution_server else None
if bootstrap_options.remote_execution_server
else None
)
remote_store_addresses = [
f"{remote_address_scheme}{addr}" for addr in bootstrap_options.remote_store_server
Expand Down

0 comments on commit 03820c5

Please sign in to comment.