14 lines
228 B
Python
14 lines
228 B
Python
|
# encoding: utf-8
|
||
|
'''
|
||
|
@author: 温进
|
||
|
@file: code_preprocess.py
|
||
|
@time: 2023/11/21 下午2:28
|
||
|
@desc:
|
||
|
'''
|
||
|
|
||
|
class CodePreprocessor:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def preprocess(self, code_dict):
|
||
|
return code_dict
|