Skip to content

Commit 6313254

Browse files
committed
Fix python style
1 parent f8bfcbe commit 6313254

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scenarios/ConfigurePythonContainer/configure-python-container.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Results:
9999
}
100100
```
101101

102-
## Step 2: Show the current Python version
102+
## Show the current Python version
103103

104104
The following command retrieves the Python runtime version currently used by your Azure App Service.
105105

@@ -115,7 +115,7 @@ Results:
115115
"PYTHON|3.10"
116116
```
117117

118-
## Step 3: Set the desired Python version
118+
## Set the desired Python version
119119

120120
Update your Azure App Service instance to use a specific Python version. Replace the desired Python version (e.g., "PYTHON|3.11") as needed.
121121

@@ -124,6 +124,7 @@ export DESIRED_PYTHON_VERSION="PYTHON|3.11"
124124
az webapp config set --resource-group $RESOURCE_GROUP --name $APP_NAME --linux-fx-version $DESIRED_PYTHON_VERSION
125125
```
126126

127+
## Verify Version
127128
Verify the updated Python version:
128129

129130
```bash
@@ -138,7 +139,7 @@ Results:
138139
"PYTHON|3.11"
139140
```
140141

141-
## Step 4: List all supported Python runtime versions
142+
## List all supported Python runtime versions
142143

143144
Use the following command to view all Python versions supported by Azure App Service on Linux.
144145

0 commit comments

Comments
 (0)