Update dev.py

This commit is contained in:
yasirarism 2022-12-21 07:42:53 +07:00 committed by GitHub
parent 887361df5b
commit a19a6af25c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,7 +129,8 @@ async def evaluation_cmd_t(_, m):
async def aexec(code, client, message):
exec(
"async def __aexec(client, message): "
+ p = print"".join(f"\n {l_}" for l_ in code.split("\n"))
+ "\n p = print"
+ "".join(f"\n {l_}" for l_ in code.split("\n"))
)
return await locals()["__aexec"](client, message)