From 93474256e39caca7aaca42d43ffd7c7724e4de5b Mon Sep 17 00:00:00 2001 From: Sebastien Quioc Date: Tue, 4 Jun 2024 15:26:07 +0200 Subject: [PATCH] fix(Linting): the last version of ruff desapproves quotes for type annotation --- sekoia_automation/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sekoia_automation/module.py b/sekoia_automation/module.py index 6ff4f6b..e834ce9 100644 --- a/sekoia_automation/module.py +++ b/sekoia_automation/module.py @@ -43,7 +43,7 @@ def __init__(self): self._configuration: dict | BaseModel | None = None self._manifest: dict | None = None self._community_uuid: str | None = None - self._items: dict[str, type["ModuleItem"]] = {} + self._items: dict[str, type[ModuleItem]] = {} self._playbook_uuid: str | None = None self._playbook_run_uuid: str | None = None self._node_run_uuid: str | None = None