Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrede committed Sep 4, 2024
1 parent e11570e commit ad5584c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion fedn/network/clients/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,11 @@ def _initialize_helper(self, combiner_config):
:return:
"""
if "helper_type" in combiner_config.keys():
self.helper = get_helper(combiner_config["helper_type"])
if not combiner_config["helper_type"]:
# Default to numpyhelper
self.helper = get_helper("numpyhelper")
else:
self.helper = get_helper(combiner_config["helper_type"])

def _subscribe_to_combiner(self, config):
"""Listen to combiner message stream and start all processing threads.
Expand Down

0 comments on commit ad5584c

Please sign in to comment.