docs: assign multicall to "m" in code example

This example snippet uses "m" without assigning. Update the code snippet
to match the other examples where we assign "m" in the context manager.
This commit is contained in:
Ken Dreyer 2020-12-11 13:23:20 -07:00 committed by Tomas Kopecek
parent 937106d82b
commit 3e8407d9cf

View file

@ -247,7 +247,7 @@ or they may be passed to the ``call_all`` method.
::
with session.multicall(strict=True, batch=500):
with session.multicall(strict=True, batch=500) as m:
builds = [m.getBuild(build_id) for build_id in mylist]