Skip to content

Commit c26342e

Browse files
committed
Remove extra comma from tutorial docs
Having a comma there means the string gets interpreted as a tuple with one string element, which would be wrong. Signed-off-by: Sahas Subramanian <[email protected]>
1 parent a6bc362 commit c26342e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/tutorials/getting_started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ microgrid.
4444
```python
4545
async def run() -> None:
4646
# This points to the default Frequenz microgrid sandbox
47-
server_url = "grpc://microgrid.sandbox.api.frequenz.io:62060",
47+
server_url = "grpc://microgrid.sandbox.api.frequenz.io:62060"
4848

4949
# Initialize the microgrid
5050
await microgrid.initialize(
@@ -104,7 +104,7 @@ from frequenz.sdk.actor import ResamplerConfig
104104

105105
async def run() -> None:
106106
# This points to the default Frequenz microgrid sandbox
107-
server_url = "grpc://microgrid.sandbox.api.frequenz.io:62060",
107+
server_url = "grpc://microgrid.sandbox.api.frequenz.io:62060"
108108

109109
# Initialize the microgrid
110110
await microgrid.initialize(

0 commit comments

Comments
 (0)