Browse Source

Remove unused variable in view

pull/7324/head
Rapptz 4 years ago
parent
commit
b87d306a70
  1. 1
      discord/ui/view.py

1
discord/ui/view.py

@ -475,7 +475,6 @@ class ViewStore:
def __verify_integrity(self): def __verify_integrity(self):
to_remove: List[Tuple[int, Optional[int], str]] = [] to_remove: List[Tuple[int, Optional[int], str]] = []
now = time.monotonic()
for (k, (view, _)) in self._views.items(): for (k, (view, _)) in self._views.items():
if view.is_finished(): if view.is_finished():
to_remove.append(k) to_remove.append(k)

Loading…
Cancel
Save