remove quotes on some types

This commit is contained in:
AAGaming
2023-09-25 13:28:15 -04:00
parent e22cc6269d
commit b81c41f667
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
from __future__ import annotations
from asyncio import AbstractEventLoop, Queue, sleep
from json.decoder import JSONDecodeError
from logging import getLogger
@@ -65,7 +66,7 @@ class FileChangeHandler(RegexMatchingEventHandler):
self.maybe_reload(src_path)
class Loader:
def __init__(self, server_instance: 'PluginManager', plugin_path: str, loop: AbstractEventLoop, live_reload: bool = False) -> None:
def __init__(self, server_instance: PluginManager, plugin_path: str, loop: AbstractEventLoop, live_reload: bool = False) -> None:
self.loop = loop
self.logger = getLogger("Loader")
self.plugin_path = plugin_path