Skip to content

Commit

Permalink
remove old task_fn_args (#2479)
Browse files Browse the repository at this point in the history
  • Loading branch information
SYangster authored Apr 9, 2024
1 parent e3fa7cd commit 656cec6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions nvflare/app_opt/pt/in_process_client_api_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import Dict, Optional
from typing import Optional

from nvflare.app_common.app_constant import AppConstants
from nvflare.app_common.executors.in_process_client_api_executor import InProcessClientAPIExecutor
Expand All @@ -26,7 +26,6 @@ def __init__(
self,
task_script_path: str,
task_script_args: str = "",
task_fn_args: Dict = None,
task_wait_time: Optional[float] = None,
result_pull_interval: float = 0.5,
log_pull_interval: Optional[float] = None,
Expand All @@ -41,7 +40,6 @@ def __init__(
super(PTInProcessClientAPIExecutor, self).__init__(
task_script_path=task_script_path,
task_script_args=task_script_args,
task_fn_args=task_fn_args,
task_wait_time=task_wait_time,
result_pull_interval=result_pull_interval,
train_with_evaluation=train_with_evaluation,
Expand Down

0 comments on commit 656cec6

Please sign in to comment.