Python 2 compatibility. (#5887)

This commit is contained in:
Robert Nishihara
2019-10-10 19:09:25 -07:00
committed by GitHub
parent c3b2ae26c5
commit 523c764c25
12 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ To use Ray's actor model:
ray.init()
@ray.remote
class Counter():
class Counter(object):
def __init__(self):
self.n = 0