We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be0bdf commit 3276960Copy full SHA for 3276960
nvflare/private/fed/client/client_engine.py
@@ -152,12 +152,6 @@ def start_app(
152
return f"{ERROR_MSG_PREFIX}: Client app does not exist. Please deploy it before starting client."
153
154
app_custom_folder = os.path.join(app_root, "custom")
155
- if os.path.isdir(app_custom_folder):
156
- try:
157
- sys.path.index(app_custom_folder)
158
- except ValueError:
159
- _remove_custom_path()
160
- sys.path.append(app_custom_folder)
161
162
self.logger.info("Starting client app. rank: {}".format(self.rank))
163
0 commit comments