Skip to content

Commit c1d8420

Browse files
committed
add future function
1 parent 9a851ff commit c1d8420

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ksql/client.py

Lines changed: 3 additions & 1 deletion
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)