diff options
| author | Rapptz <[email protected]> | 2021-08-01 02:40:11 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-08-01 02:40:11 -0400 |
| commit | b87d306a700319d89bc96d5f8cb21008006ebd7d (patch) | |
| tree | 506a9fae552926f5c6ef7e4e851bec532811482c /discord/ui | |
| parent | Change View dispatch mechanism to be keyed by message_id as well (diff) | |
| download | discord.py-b87d306a700319d89bc96d5f8cb21008006ebd7d.tar.xz discord.py-b87d306a700319d89bc96d5f8cb21008006ebd7d.zip | |
Remove unused variable in view
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 a190b507..ae0ba3b7 100644 --- a/discord/ui/view.py +++ b/discord/ui/view.py @@ -475,7 +475,6 @@ class ViewStore: def __verify_integrity(self): to_remove: List[Tuple[int, Optional[int], str]] = [] - now = time.monotonic() for (k, (view, _)) in self._views.items(): if view.is_finished(): to_remove.append(k) |