From f7e7195d9fcc7210d368a39cbfb3ffb41d8f4ba7 Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Tue, 10 Oct 2023 19:21:32 -0400 Subject: [PATCH] fix imports linting --- weaver/notify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weaver/notify.py b/weaver/notify.py index 31857ea1b..16a68679a 100644 --- a/weaver/notify.py +++ b/weaver/notify.py @@ -16,13 +16,13 @@ from weaver.datatype import Job from weaver.processes.constants import JobInputsOutputsSchema from weaver.status import Status -from weaver.utils import bytes2str, fully_qualified_name, get_settings, str2bytes, request_extra +from weaver.utils import bytes2str, fully_qualified_name, get_settings, request_extra, str2bytes from weaver.wps_restapi.jobs.utils import get_results if TYPE_CHECKING: from typing import Optional - from weaver.typedefs import AnySettingsContainer, ExecutionSubscribers, SettingsType, JSON + from weaver.typedefs import AnySettingsContainer, ExecutionSubscribers, JSON, SettingsType LOGGER = logging.getLogger(__name__)