Skip to content

Commit 2ba219c

Browse files
fixed type in settings
1 parent e8112fa commit 2ba219c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snakemake_interface_executor_plugins/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from abc import ABC, abstractmethod
22
from dataclasses import dataclass
3-
from typing import List, Optional, Set
3+
from typing import Sequence, Set
44

55
from snakemake_interface_common.settings import SettingsEnumBase
66

@@ -72,7 +72,7 @@ def immediate_submit(self) -> bool:
7272

7373
@property
7474
@abstractmethod
75-
def envvars(self) -> Optional[List[str]]:
75+
def envvars(self) -> Sequence[str]:
7676
...
7777

7878
@property

0 commit comments

Comments
 (0)