Merge pull request #3296 from davep/remove-unused-command-import

Remove an unused import from command.py
This commit is contained in:
Dave Pearson
2023-09-13 22:09:00 +01:00
committed by GitHub

View File

@@ -7,7 +7,7 @@ See the guide on the [Command Palette](../guide/command_palette.md) for full det
from __future__ import annotations
from abc import ABC, abstractmethod
from asyncio import CancelledError, Queue, Task, TimeoutError, wait, wait_for
from asyncio import CancelledError, Queue, Task, TimeoutError, wait_for
from dataclasses import dataclass
from functools import total_ordering
from time import monotonic