We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8112fa commit 2ba219cCopy full SHA for 2ba219c
1 file changed
snakemake_interface_executor_plugins/settings.py
@@ -1,6 +1,6 @@
1
from abc import ABC, abstractmethod
2
from dataclasses import dataclass
3
-from typing import List, Optional, Set
+from typing import Sequence, Set
4
5
from snakemake_interface_common.settings import SettingsEnumBase
6
@@ -72,7 +72,7 @@ def immediate_submit(self) -> bool:
72
73
@property
74
@abstractmethod
75
- def envvars(self) -> Optional[List[str]]:
+ def envvars(self) -> Sequence[str]:
76
...
77
78
0 commit comments