Skip to content

Commit a760a9c

Browse files
docs: Fix syntax for channel creation in Python example (supabase#39212)
Wrong Python syntax fixed Co-authored-by: Chris Chinchilla <chris.ward@supabase.io>
1 parent 4e0db9f commit a760a9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/docs/content/guides/realtime/getting_started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ let channel = supabase.channel("room:lobby:messages") {
197197

198198
```python
199199
# Create a channel with a descriptive topic name
200-
channel = supabase.channel('room:lobby:messages', params={config={private= True }})
200+
channel = supabase.channel('room:lobby:messages', params={'config': {'private': True }})
201201
```
202202

203203
</TabPanel>

0 commit comments

Comments
 (0)