我发现自己处于无法接受的位置,不得不更换很多
def bar():
…
client = FooClass()
[ code using client ]
client = FooClass(args)
[ code using the other client ]
[ code no longer using client ]
使用
@some_decorator
async def bar():
…
async with make_foo() as client:
[ code using client ]
async with make_foo(args) as client:
[ code using the other client ]
[ code no longer using client ]
在不影响任何其他格式,注释或其他任何内容的情况下。
现在,我可以付钱给某人做很多无意识的编辑,或者自己做……或者我可以找到可以被教导去做的工具或库。
赞赏指针。