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
Hello! I'm wondering why the import_ method has a trailing underscore, but export doesn't - was that intentional?
import_
export
databricks-sdk-py/databricks/sdk/service/workspace.py
Line 1145 in c578001
The text was updated successfully, but these errors were encountered:
@AdeelK93 yes, because import is a reserved Python keyword 🤷 what would be more logical suffix here?
import
Sorry, something went wrong.
Oh! Hmm. To me the _ implied that this was a private method in some way, which gave me pause when first trying it out.
_
But maybe I'm alone in that concern, and I don't have a better suggestion either
No branches or pull requests
Hello! I'm wondering why the
import_
method has a trailing underscore, butexport
doesn't - was that intentional?databricks-sdk-py/databricks/sdk/service/workspace.py
Line 1145 in c578001
The text was updated successfully, but these errors were encountered: