Skip to content

Commit

Permalink
Remove "self"
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminastrand committed Nov 29, 2024
1 parent 865979d commit e300673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedn/network/clients/grpc_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def listen_to_task_stream(self, client_name: str, client_id: str, callback: Call
callback(request)

except grpc.RpcError as e:
self.logger.error(f"GRPC (TaskStream): An error occurred: {e}")
logger.error(f"GRPC (TaskStream): An error occurred: {e}")
return self._handle_grpc_error(e, "TaskStream", lambda: self.listen_to_task_stream(client_name, client_id, callback))
except Exception as e:
logger.error(f"GRPC (TaskStream): An error occurred: {e}")
Expand Down

0 comments on commit e300673

Please sign in to comment.