Skip to content

Commit 5c7c54c

Browse files
Merge pull request bryanyang0528#5 from bryanyang0528/fixed_python2_support_print
add future function
2 parents 9a851ff + c1d8420 commit 5c7c54c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ksql/client.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
from __future__ import absolute_import
2+
from __future__ import print_function
3+
14
import json
25
import requests
36

@@ -24,7 +27,6 @@ def __request(self, endpoint, method='post', sql_string=''):
2427
url = '{}/{}'.format(self.url, endpoint)
2528

2629
sql_string = self.__validate_sql_string(sql_string)
27-
print(sql_string)
2830
data = json.dumps({
2931
"ksql": sql_string
3032
})

0 commit comments

Comments
 (0)