diff options
| author | Rapptz <[email protected]> | 2021-04-10 03:23:47 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-04-10 03:23:47 -0400 |
| commit | d58edd10a767b2c25360e8ac39fe7ab42e91ea19 (patch) | |
| tree | 88498f6d77519e1484c5f4dde60e059b86a6435d /discord/template.py | |
| parent | Add typings for invites, templates, and bans (diff) | |
| download | discord.py-d58edd10a767b2c25360e8ac39fe7ab42e91ea19.tar.xz discord.py-d58edd10a767b2c25360e8ac39fe7ab42e91ea19.zip | |
Add missing future annotations import
Diffstat (limited to 'discord/template.py')
| -rw-r--r-- | discord/template.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/discord/template.py b/discord/template.py index 5b9ad871..6330faf4 100644 --- a/discord/template.py +++ b/discord/template.py @@ -22,6 +22,8 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +from __future__ import annotations + from typing import Any, Optional, TYPE_CHECKING, overload from .utils import parse_time, _get_as_snowflake, _bytes_to_base64_data from .enums import VoiceRegion |