@@ -42,7 +42,7 @@ Create an `InfrahubClientSync` for traditional synchronous code:
4242``` python
4343from infrahub_sdk import InfrahubClientSync
4444
45- # Connect to local Infrahub instance
45+ # Connect to local Infrahub instance
4646client = InfrahubClientSync(address = " http://localhost:8000" )
4747
4848# Connect to remote instance
@@ -67,7 +67,7 @@ API tokens provide secure, long-lived authentication. Set them via environment v
6767 ```
6868
6969 </TabItem >
70- <TabItem value = " Sync" default >
70+ <TabItem value = " Sync" >
7171
7272 ``` python
7373 from infrahub_sdk import Config, InfrahubClientSync
@@ -92,7 +92,7 @@ For interactive authentication, use username and password. The SDK automatically
9292 ```
9393
9494 </TabItem >
95- <TabItem value = " Sync" default >
95+ <TabItem value = " Sync" >
9696
9797 ``` python
9898 from infrahub_sdk import Config, InfrahubClientSync
@@ -121,7 +121,7 @@ To troubleshoot or understand the queries being sent to Infrahub, enable query e
121121 ```
122122
123123 </TabItem >
124- <TabItem value = " Sync" default >
124+ <TabItem value = " Sync" >
125125
126126 ``` python
127127 from infrahub_sdk import Config, InfrahubClientSync
@@ -154,7 +154,7 @@ Use `INFRAHUB_PROXY` environment variable or the `proxy` configuration parameter
154154 ```
155155
156156 </TabItem >
157- <TabItem value = " Sync" default >
157+ <TabItem value = " Sync" >
158158
159159 ``` python
160160 from infrahub_sdk import Config, InfrahubClientSync
@@ -188,7 +188,7 @@ export INFRAHUB_PROXY_MOUNTS_HTTPS=http://https-proxy.example.com:8080
188188 ```
189189
190190 </TabItem >
191- <TabItem value = " Sync" default >
191+ <TabItem value = " Sync" >
192192
193193 ``` python
194194 from infrahub_sdk import InfrahubClientSync
@@ -220,7 +220,7 @@ Configure your client to work with a specific Infrahub branch. This is useful fo
220220 ```
221221
222222 </TabItem >
223- <TabItem value = " Sync" default >
223+ <TabItem value = " Sync" >
224224
225225 ``` python
226226 from infrahub_sdk import InfrahubClientSync, Config
@@ -260,12 +260,12 @@ To verify your client is properly configured and can connect to Infrahub, test t
260260 ```
261261
262262 </TabItem >
263- <TabItem value = " Sync" default >
263+ <TabItem value = " Sync" >
264264
265265 ``` python
266266 from infrahub_sdk import InfrahubClientSync, Config
267267
268- # Test connection and authentication
268+ # Test connection and authentication
269269 def test_connection ():
270270 client = InfrahubClientSync(address = " http://localhost:8000" )
271271
0 commit comments