Issue : Inefficient String Concatenation in `RSyncEventHandler.rsync`
Open
- Dominant language
- Python
- Stars
- 25
- Forks
- 4
- PR merge metrics
- No merged PRs in 30d
Description
The `RSyncEventHandler.rsync` method constructs the rsync command using string concatenation with the `+` operator, which can be inefficient, especially when dealing with multiple options. It would be better to use `str.format` or `string.join` for better performance and readability.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.