Browse Source
Fix missing word in persistent view example
pull/9141/head
Abe Hanoka
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
examples/views/persistent.py
|
|
@ -5,7 +5,7 @@ import discord |
|
|
|
|
|
|
|
|
|
|
|
# Define a simple View that persists between bot restarts |
|
|
|
# In order a view to persist between restarts it needs to meet the following conditions: |
|
|
|
# In order for a view to persist between restarts it needs to meet the following conditions: |
|
|
|
# 1) The timeout of the View has to be set to None |
|
|
|
# 2) Every item in the View has to have a custom_id set |
|
|
|
# It is recommended that the custom_id be sufficiently unique to |
|
|
|