File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1111
1212@asynccontextmanager
1313async def destinations_client (ctx ):
14- async with CliSession () as sess :
14+ async with CliSession (ctx ) as sess :
1515 cl = DestinationsClient (sess , base_url = ctx .obj ['BASE_URL' ])
1616 yield cl
1717
Original file line number Diff line number Diff line change 1414
1515@asynccontextmanager
1616async def features_client (ctx ):
17- async with CliSession () as sess :
17+ async with CliSession (ctx ) as sess :
1818 cl = FeaturesClient (sess , base_url = ctx .obj ['BASE_URL' ])
1919 yield cl
2020
Original file line number Diff line number Diff line change 1313
1414@asynccontextmanager
1515async def client (ctx ):
16- async with CliSession () as sess :
16+ async with CliSession (ctx ) as sess :
1717 cl = MosaicsClient (sess , base_url = ctx .obj ['BASE_URL' ])
1818 yield cl
1919
You can’t perform that action at this time.
0 commit comments