We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bracket position issue, cause format() on return of function print() MiscDemo/connect/python/connector.py line 90 to 91:
format()
return
print()
MiscDemo/connect/python/connector.py
for (siteid, citycode, pv) in cursor: print("{}\t{}\t{}").format(siteid, citycode, pv)
should be
for (siteid, citycode, pv) in cursor: print("{}\t{}\t{}".format(siteid, citycode, pv)) #bracket position issue
The text was updated successfully, but these errors were encountered:
Fix bracket position issue StarRocks#62
3b82122
Line 91 ` print("{}\t{}\t{}").format(siteid, citycode, pv)` to ` print("{}\t{}\t{}".format(siteid, citycode, pv))` Signed-off-by: Stupid <[email protected]>
No branches or pull requests
Bracket position issue, cause
format()
onreturn
of functionprint()
MiscDemo/connect/python/connector.py
line 90 to 91:should be
The text was updated successfully, but these errors were encountered: