Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # 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
Contributor

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 <22520563+NewJerseyStyle@users.noreply.github.com>
DanRoscigno pushed a commit that referenced this issue Feb 7, 2025
Line 91
`    print("{}\t{}\t{}").format(siteid, citycode, pv)`
to
`    print("{}\t{}\t{}".format(siteid, citycode, pv))`

Signed-off-by: Stupid <22520563+NewJerseyStyle@users.noreply.github.com>
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant