質問編集履歴
2
引数の抜けを修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
自作のツールで、パラメータや機能の管理をうまく行いたい
|
1
|
+
自作のツールで、パラメータや機能の管理をうまく行いたい(保守性を上げたい)
|
test
CHANGED
@@ -84,11 +84,11 @@
|
|
84
84
|
|
85
85
|
if tool_type == "XXX":
|
86
86
|
|
87
|
-
execute_XXX(conf_ini)
|
87
|
+
execute_XXX(conf_ini, str_param_type)
|
88
88
|
|
89
89
|
elif tool_type == "YYY":
|
90
90
|
|
91
|
-
execute_YYY(conf_ini)
|
91
|
+
execute_YYY(conf_ini, str_param_type)
|
92
92
|
|
93
93
|
...(中略)
|
94
94
|
|
1
誤記修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,11 +84,11 @@
|
|
84
84
|
|
85
85
|
if tool_type == "XXX":
|
86
86
|
|
87
|
-
execute_XXX()
|
87
|
+
execute_XXX(conf_ini)
|
88
88
|
|
89
89
|
elif tool_type == "YYY":
|
90
90
|
|
91
|
-
execute_YYY()
|
91
|
+
execute_YYY(conf_ini)
|
92
92
|
|
93
93
|
...(中略)
|
94
94
|
|