File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ about the state of the tasks at given points. Here is an example:
111111
112112 class MySchema (Schema ):
113113 foo: str # Required field
114- bar: Optional[bool ] = None # Optional field
114+ bar: Optional[bool ] = None # Optional field
115115
116116 transforms = TransformSequence()
117117 transforms.add_validate(MySchema)
Original file line number Diff line number Diff line change 2222from taskgraph .util .set_name import SET_NAME_MAP
2323
2424SetNameType = Literal ["strip-kind" , "retain-kind" ]
25- GroupByType = Literal ["single" , "all" , "attribute" ]
25+ GroupByType = Literal [
26+ "single" ,
27+ "all" ,
28+ "attribute" ,
29+ "single-with-filters" ,
30+ "platform" ,
31+ "single-locale" ,
32+ "chunk-locales" ,
33+ "partner-repack-ids" ,
34+ "component" ,
35+ "build-type" ,
36+ ]
2637
2738
2839class FromDepsChildSchema (Schema ):
You can’t perform that action at this time.
0 commit comments