We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bfbf18 commit 98c5f30Copy full SHA for 98c5f30
src/databricks/labs/blueprint/__init__.py
@@ -1,5 +1,11 @@
1
+import os
2
+
3
from databricks.sdk.core import with_user_agent_extra
4
5
from .__about__ import __version__
6
7
with_user_agent_extra("blueprint", __version__)
8
9
+cli_version = os.environ.get("DATABRICKS_CLI_VERSION")
10
+if cli_version:
11
+ with_user_agent_extra("cli", cli_version)
0 commit comments