We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concatenation of a string is not correct.
Steps to reproduce the behavior:
Original line:
self.enqueue_script(handle='bootstrap', path='xxxxxxxxxxxx/js/vendor/bootstrap.bundle' '.min.js', in_footer=True)
Run Black no arguments
Result:
self.enqueue_script( handle="bootstrap", path="xxxxxxxxxxxx/js/vendor/bootstrap.bundle" ".min.js", in_footer=True, )
Expected behavior self.enqueue_script( handle="bootstrap", path="esperanzahomes/js/vendor/bootstrap.bundle.min.js", in_footer=True, )
Not having a space in the path string.
Environment (please complete the following information):
Does this bug also happen on master? Yes, using the online formatter.
The text was updated successfully, but these errors were encountered:
Duplicate of #26.
https://pypi.org/project/flake8_implicit_str_concat/ is a handy tool to detect these so you can manually fix them.
Sorry, something went wrong.
No branches or pull requests
Concatenation of a string is not correct.
Steps to reproduce the behavior:
Original line:
Run Black no arguments
Result:
Expected behavior
self.enqueue_script(
handle="bootstrap",
path="esperanzahomes/js/vendor/bootstrap.bundle.min.js",
in_footer=True,
)
Not having a space in the path string.
Environment (please complete the following information):
Does this bug also happen on master? Yes, using the online formatter.
The text was updated successfully, but these errors were encountered: