Skip to content
New issue

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

Syntax error in Python connector demo #62

Open
NewJerseyStyle opened this issue Apr 28, 2024 · 0 comments
Open

Syntax error in Python connector demo #62

NewJerseyStyle opened this issue Apr 28, 2024 · 0 comments

Comments

@NewJerseyStyle
Copy link

Bracket position issue, cause format() on return of function print()
MiscDemo/connect/python/connector.py line 90 to 91:

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
NewJerseyStyle added a commit to NewJerseyStyle/demo that referenced this issue Apr 28, 2024
Line 91
`    print("{}\t{}\t{}").format(siteid, citycode, pv)`
to
`    print("{}\t{}\t{}".format(siteid, citycode, pv))`

Signed-off-by: Stupid <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant