diff options
| author | 2021-09-02 12:42:25 -0700 | |
|---|---|---|
| committer | 2021-09-02 12:42:25 -0700 | |
| commit | 8813045f40946a6240f4d8823ef9939f3f154853 (patch) | |
| tree | 83b0fd28a0203a948b5d3eb64270d1799ac7c4b0 /bot/utils/converters.py | |
| parent | Merge pull request #838 from python-discord/Use-permissions_for-over-permissi... (diff) | |
| parent | Merge branch 'main' into decorator-factory/typehints-fix (diff) | |
Merge pull request #802 from python-discord/decorator-factory/typehints-fix
* Fix type annotations
Co-authored-by: decorator-factory <[email protected]>
Diffstat (limited to '')
| -rw-r--r-- | bot/utils/converters.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/utils/converters.py b/bot/utils/converters.py index fe2c980c..7227a406 100644 --- a/bot/utils/converters.py +++ b/bot/utils/converters.py @@ -1,5 +1,5 @@  from datetime import datetime -from typing import Tuple, Union +from typing import Union  import discord  from discord.ext import commands @@ -23,7 +23,7 @@ class CoordinateConverter(commands.Converter):      """Converter for Coordinates."""      @staticmethod -    async def convert(ctx: commands.Context, coordinate: str) -> Tuple[int, int]: +    async def convert(ctx: commands.Context, coordinate: str) -> tuple[int, int]:          """Take in a coordinate string and turn it into an (x, y) tuple."""          if len(coordinate) not in (2, 3):              raise commands.BadArgument("Invalid co-ordinate provided.") | 
