psf / requests

A simple, yet elegant, HTTP library.
https://requests.readthedocs.io/en/latest/
Apache License 2.0
51.6k stars 9.23k forks source link

chore: change string concatenation way (auth.py) #6661

Closed mrKazzila closed 2 months ago

mrKazzila commented 2 months ago

Referring to Pep8's recommendation, changed the way strings are concatenated (from += to ''.join)

sigmavirus24 commented 2 months ago

We don't accept stylistic changes unless they are part of meaningful work. Furthermore, the recommendation against using string addition is only relevant in large enough numbers of concatenation and is likely irrelevant here.

mrKazzila commented 2 months ago

Anyway, Thanks for the feedback!