Correct way to put long function calls on multiple lines
- by ensnare
I have a long function, as seen below:
hash_correct = hashlib.md5(salt + password)).digest().encode("base64")
I'd like to split it up into two lines but am not sure of the correct way to do this in Python?
Thanks.