diff options
| author | Rapptz <[email protected]> | 2021-07-07 20:14:26 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-07-07 20:19:17 -0400 |
| commit | 8df35c83a9b5a1aa8e671a58263455d22d5c8097 (patch) | |
| tree | cccb64a7741c84bd075c59c9fc8ef9d9ea1bc82d /discord/ui | |
| parent | Remove channel type coercion in factory methods (diff) | |
| download | discord.py-8df35c83a9b5a1aa8e671a58263455d22d5c8097.tar.xz discord.py-8df35c83a9b5a1aa8e671a58263455d22d5c8097.zip | |
Remove extraneous dict assignment from view store
Diffstat (limited to 'discord/ui')
| -rw-r--r-- | discord/ui/view.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/discord/ui/view.py b/discord/ui/view.py index b03e1526..407a3110 100644 --- a/discord/ui/view.py +++ b/discord/ui/view.py @@ -511,7 +511,6 @@ class ViewStore: return view, item = value - self._views[key] = (view, item) item.refresh_state(interaction) view._dispatch_item(item, interaction) |