mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-25 17:22:55 +00:00
fix: remove redundant import of pickle in function_code.py
This commit is contained in:
parent
48899d55d1
commit
8ff15865a7
|
|
@ -49,6 +49,7 @@ class FunctionExecutor:
|
||||||
_exec_code = f"""
|
_exec_code = f"""
|
||||||
try:
|
try:
|
||||||
import os
|
import os
|
||||||
|
import pickle
|
||||||
env = dict(os.environ)
|
env = dict(os.environ)
|
||||||
for key in list(env.keys()):
|
for key in list(env.keys()):
|
||||||
if key in os.environ and (key.startswith('MAXKB') or key.startswith('POSTGRES') or key.startswith('PG')):
|
if key in os.environ and (key.startswith('MAXKB') or key.startswith('POSTGRES') or key.startswith('PG')):
|
||||||
|
|
@ -61,7 +62,6 @@ try:
|
||||||
for local in locals_v:
|
for local in locals_v:
|
||||||
globals_v[local] = locals_v[local]
|
globals_v[local] = locals_v[local]
|
||||||
exec_result=f(**keywords)
|
exec_result=f(**keywords)
|
||||||
import pickle
|
|
||||||
with open({result_path!a}, 'wb') as file:
|
with open({result_path!a}, 'wb') as file:
|
||||||
file.write(pickle.dumps({success}))
|
file.write(pickle.dumps({success}))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue