##// END OF EJS Templates
bundlespec: type the _bundlespeccontentopts dictionary...
marmoute -
r52467:9b51a4fb default
parent child Browse files
Show More
@@ -6,6 +6,8 b''
6 import collections
6 import collections
7
7
8 from typing import (
8 from typing import (
9 Dict,
10 Union,
9 cast,
11 cast,
10 )
12 )
11
13
@@ -106,7 +108,7 b' class bundlespec:'
106 }
108 }
107
109
108 # Maps bundle version with content opts to choose which part to bundle
110 # Maps bundle version with content opts to choose which part to bundle
109 _bundlespeccontentopts = {
111 _bundlespeccontentopts: Dict[bytes, Dict[bytes, Union[bool, bytes]]] = {
110 b'v1': {
112 b'v1': {
111 b'changegroup': True,
113 b'changegroup': True,
112 b'cg.version': b'01',
114 b'cg.version': b'01',
General Comments 0
You need to be logged in to leave comments. Login now