Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci_scripts/CAPItools/utils_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# __init__ 初始化函数,调用decode
# decode 用于解析CppHeaderParser的解析信息
# create_and_write_file 根据指定的语言类型,在指定目录生成对应的文档
class func_helper(object):
class func_helper:
def __init__(self, function_dict, cpp2py_api_list):
super().__init__()
self.function_dict = function_dict
Expand Down Expand Up @@ -180,7 +180,7 @@ def create_and_write_file_en(self, save_dir, language):
# __init__ 初始化函数,调用decode
# decode 用于解析CppHeaderParser的解析信息
# create_and_write_file 根据指定的语言类型,在指定目录生成对应的文档
class class_helper(object):
class class_helper:
def __init__(self, class_dict):
super().__init__()
self.class_dict = class_dict
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ ignore = [
"PLR1722",
"C403",
"C405",
"UP004",
"C414",
"C416",
"C419",
Expand Down