-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fs: fix implicitly concatenated strings on a single line
Summary: Similar to D65389031, this diff fixes the implicitly concatenated strings on a single line. While it is valid Python syntax to concatenate multiple string or byte literals implicitly (via whitespace delimiters), it is unnecessary and negatively affects code readability. This diff used `ruff` to fix those strings, and then used `arc lint` to fix the format, and also some manual changes (ruff does not support automatically fixing mixed usage of f-strings and regular strings). ``` $ ruff check --select ISC001 --fix $ arc lint ``` Reviewed By: MichaelCuevas Differential Revision: D66881295 fbshipit-source-id: c977ef66110cb3e7d477f7020e47a1dbcaf56fee
- Loading branch information
1 parent
1dd2d3c
commit ffbe20a
Showing
3 changed files
with
8 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters