We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b64873 commit aaabbfdCopy full SHA for aaabbfd
snakemake_interface_executor_plugins/jobs.py
@@ -101,18 +101,18 @@ def benchmark(self) -> Optional[str]: ...
101
102
@property
103
@abstractmethod
104
- def message(self): ...
+ def message(self) -> Optional[str]: ...
105
106
107
class GroupJobExecutorInterface(ABC):
108
109
110
- def jobs(self): ...
+ def jobs(self) -> Iterable[SingleJobExecutorInterface]: ...
111
112
113
114
- def groupid(self): ...
+ def groupid(self) -> str: ...
115
116
117
118
- def toposorted(self): ...
+ def toposorted(self) -> Sequence[Sequence[SingleJobExecutorInterface]]: ...
0 commit comments