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
Using the black formatter I noticed that the following file has python2 syntax and should be updated to python3 since python2 is no longer supported.
wkml/rgb2wkml.py
I think it's mostly the
print "thing"
type of statements need to change to
print( "thing)
So it's easy to do. You can check it with black and tell it what version you want to check it against.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using the black formatter I noticed that the following file has python2 syntax and should be updated to python3 since python2 is no longer supported.
wkml/rgb2wkml.py
I think it's mostly the
print "thing"
type of statements need to change to
print( "thing)
So it's easy to do. You can check it with black and tell it what version you want to check it against.
The text was updated successfully, but these errors were encountered: