pitrou commented on PR #45629:
URL: https://github.com/apache/arrow/pull/45629#issuecomment-2717021007
> Took a look at the archery changes, there are just some unnecessary `f`
prefixes.
I think those are debatable. The question is which alternative is more
maintainable and less error-prone:
```python
raise click.ClickException(
f"There is no service/image defined in docker-compose.yml with "
f"name: {e}"
)
```
or:
```python
raise click.ClickException(
"There is no service/image defined in docker-compose.yml with "
f"name: {e}"
)
```
Thoughts @raulcd @AlenkaF @jorisvandenbossche @rok ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]