Skip to content

Commit 42a7dd8

Browse files
committed
print(x) vs print x fix for python 3.
1 parent a7aa45f commit 42a7dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/tests/test_optional/test_utils/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def test_pandas_json_encoding():
248248
def test_numpy_masked_json_encoding():
249249
l = [1, 2, np.ma.core.masked]
250250
j1 = json.dumps(l, cls=utils.PlotlyJSONEncoder)
251-
print j1
251+
print(j1)
252252
assert(j1 == '[1, 2, null]')
253253
assert(set(l) == set([1, 2, np.ma.core.masked]))
254254

0 commit comments

Comments
 (0)