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
I believe that the type hint on the call method for _ProxyUtil is causing type issues when using
databricks.sdk.runtime.dbutils
For this
from databricks.sdk.runtime import dbutils dbutils.notebook.exit("")
mypy gives me the error
a.py:3: error: Too many arguments for "__call__" [call-arg] Found 1 error in 1 file (checked 1 source file)
Changing this line from
databricks-sdk-py/databricks/sdk/dbutils.py
Line 324 in dd07079
to
def __call__(self, *args, **kwargs):
rectifies this issue, though I am not sure if this has any effect elsewhere
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I believe that the type hint on the call method for _ProxyUtil is causing type issues when using
databricks.sdk.runtime.dbutils
For this
mypy gives me the error
Changing this line from
databricks-sdk-py/databricks/sdk/dbutils.py
Line 324 in dd07079
to
rectifies this issue, though I am not sure if this has any effect elsewhere
The text was updated successfully, but these errors were encountered: