How can I spread a long with clause in Python over multiple lines? Right now i have
with self.context_manager_one(some, parameters, that, are, passed) \ as return_value_one, \ self.context_manager_two(self.p, slice(None), None) \ as return_value_two:
I would like to follow the Google Python style guide , which prohibits the continuation of the backslash.
source share