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 f25685a commit cd4839eCopy full SHA for cd4839e
src/gwf/core.py
@@ -4,6 +4,7 @@
4
import logging
5
import os
6
import os.path
7
+from typing import Optional
8
import unicodedata
9
from collections import defaultdict
10
from collections.abc import Mapping
@@ -194,7 +195,7 @@ class AnonymousTarget:
194
195
group: str = attrs.field(default=None)
196
working_dir: str = attrs.field(default=".")
197
protect: set = attrs.field(factory=set, converter=set)
- executor: executors.Executor = attrs.field(factory=executors.Bash)
198
+ executor: Optional[executors.Executor] = attrs.field(default=None)
199
spec: str = attrs.field(default="")
200
201
def __attrs_post_init__(self):
0 commit comments