From 8568b979c4bb5a2d1b738df58ec54327b9eca75e Mon Sep 17 00:00:00 2001
From: "deepsource-autofix[bot]"
 <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Date: Thu, 2 Jul 2020 14:11:26 +0000
Subject: [PATCH] Remove unnecessary typecast

---
 userbot/modules/quotly.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/userbot/modules/quotly.py b/userbot/modules/quotly.py
index 389b911..a3de3cc 100644
--- a/userbot/modules/quotly.py
+++ b/userbot/modules/quotly.py
@@ -39,10 +39,10 @@
         "channel": "Channel"
     }
 
-    config = dict({"api_url": "http://api.antiddos.systems",
+    config = {"api_url": "http://api.antiddos.systems",
                                           "username_colors": ["#fb6169", "#faa357", "#b48bf2", "#85de85",
                                                               "#62d4e3", "#65bdf3", "#ff5694"],
-                                          "default_username_color": "#b48bf2"})
+                                          "default_username_color": "#b48bf2"}
 
 @register(outgoing=True, pattern="^.q(?: |$)(.*)")
 async def _(event):