Skip to content

Commit

Permalink
统一命名: XXXResult 也加上EOS前缀
Browse files Browse the repository at this point in the history
  • Loading branch information
Daylily-Zeleen committed Dec 30, 2024
1 parent a6152aa commit 28044dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gd_eos/eos_code_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1503,7 +1503,7 @@ def _is_enum_type(type: str) -> bool:


def _convert_result_type(method_name: str) -> str:
return method_name.split("_", 1)[1] + "Result"
return "EOS" + method_name.split("_", 1)[1] + "Result"


def _gen_packed_result_type(
Expand Down

0 comments on commit 28044dc

Please sign in to comment.