File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ def _read_configuration_yaml(configuration: str) -> dict:
311311 f"Invalid YAML configuration: circular environment definitions for { environment_aliases } "
312312 )
313313
314- plugin_fields = {}
314+ plugin_fields : dict [ str , mm . fields . Field ] = {}
315315 for key in yaml_dict :
316316 if key in ConfigSchema ().fields :
317317 continue
Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ def setup_logging(self):
2929
3030 # Always enable logging to console
3131 try :
32- from dlstbx .util .colorstreamhandler import ColorStreamHandler
32+ from dlstbx .util .colorstreamhandler import (
33+ ColorStreamHandler , # type: ignore
34+ )
3335
3436 self .console = ColorStreamHandler ()
3537 except ImportError :
Original file line number Diff line number Diff line change 44import threading
55from typing import Any , Callable
66
7+ import workflows .services .common_service
78import workflows .util
89
910import zocalo
You can’t perform that action at this time.
0 commit comments