remove quotes on some types

This commit is contained in:
AAGaming
2023-09-25 13:28:15 -04:00
committed by marios8543
parent aebca54eac
commit ca1332334d
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
from __future__ import annotations
from os import stat_result
import uuid
from json.decoder import JSONDecodeError
@@ -27,7 +28,7 @@ class FilePickerObj(TypedDict):
is_dir: bool
class Utilities:
def __init__(self, context: 'PluginManager') -> None:
def __init__(self, context: PluginManager) -> None:
self.context = context
self.util_methods: Dict[str, Callable[..., Coroutine[Any, Any, Any]]] = {
"ping": self.ping,