You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The formatter currently never adds parentheses around strings in the right hand side of an assignment. Black does add them if they help to match the line limit, otherwise it doesn't.
Input and identical ruff formatted output:
DEFAULT_FILE_STORAGE_DEPRECATED_MSG="The DEFAULT_FILE_STORAGE setting is deprecated. Use STORAGES instead."DEFAULT_FILE_STORAGE_DEPRECATED_MSG="The DEFAULT_FILE_STORAGE setting is deprecated. Use STORAGES instead. This makes it so long that parentheses don't help"
Black formatted output:
DEFAULT_FILE_STORAGE_DEPRECATED_MSG= (
"The DEFAULT_FILE_STORAGE setting is deprecated. Use STORAGES instead."
)
DEFAULT_FILE_STORAGE_DEPRECATED_MSG="The DEFAULT_FILE_STORAGE setting is deprecated. Use STORAGES instead. This makes it so long that parentheses don't help"
The text was updated successfully, but these errors were encountered:
The formatter currently never adds parentheses around strings in the right hand side of an assignment. Black does add them if they help to match the line limit, otherwise it doesn't.
Input and identical ruff formatted output:
Black formatted output:
The text was updated successfully, but these errors were encountered: