From 555e57b3f3f16679139071025c40193b5ea53651 Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Tue, 16 Apr 2024 19:58:34 -0400 Subject: [PATCH] Fix all flake8 ANN205 issues --- techsupport_bot/commands/giphy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/techsupport_bot/commands/giphy.py b/techsupport_bot/commands/giphy.py index ab1561537..a3c092d2f 100644 --- a/techsupport_bot/commands/giphy.py +++ b/techsupport_bot/commands/giphy.py @@ -25,7 +25,7 @@ class Giphy(cogs.BaseCog): SEARCH_LIMIT = 10 @staticmethod - def parse_url(url): + def parse_url(url: str) -> str: """Method to parse the url.""" index = url.find("?cid=") return url[:index]