From d27e6da1b291887707533cc10f066cd0e888607b Mon Sep 17 00:00:00 2001 From: Hao Chen Date: Thu, 21 May 2020 16:12:44 +0800 Subject: [PATCH] Fix a lint issue (#8530) --- python/ray/worker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ray/worker.py b/python/ray/worker.py index 40b4d7081..e663afea5 100644 --- a/python/ray/worker.py +++ b/python/ray/worker.py @@ -1265,8 +1265,8 @@ def connect(node, ) # Create an object for interfacing with the global state. - # Note, global state should be intialized after `CoreWorker`, because it will - # use glog, which is intialized in `CoreWorker`. + # Note, global state should be intialized after `CoreWorker`, because it + # will use glog, which is intialized in `CoreWorker`. ray.state.state._initialize_global_state( node.redis_address, redis_password=node.redis_password)