New issue
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
fix: remove unnecessary double quotes in strings #262
Conversation
Change-Id: I79373e42991c2872ff0f8be215bbfa5b4b460f0c
@aribray Even though Removing the ones in the examples linked from #230 should be fine, as that actually shortens those lines. However, the files where those examples occur are in generated code, which means that you need either to apply your changes as replacements in |
@tseaver Thanks! I did run |
The 3.7 failure looks like a flake, please try re-running it. |
🤖 I have created a release \*beep\* \*boop\* --- ### [2.5.1](https://www.github.com/googleapis/python-automl/compare/v2.5.0...v2.5.1) (2021-10-20) ### Bug Fixes * remove unnecessary double quotes in strings ([#262](https://www.github.com/googleapis/python-automl/issues/262)) ([fb73bd7](https://www.github.com/googleapis/python-automl/commit/fb73bd7d5ab024aaec3bb0d892c587082911970b)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Change-Id: I79373e42991c2872ff0f8be215bbfa5b4b460f0c
tables_client.py
uses double quotes for string wrapping. Thepython-automl
linter configuration is set to ignore PEP8 E501 errors ("Line too long"), so the string wrapping is unnecessary.Fixes #230🦕
Closes #229