@@ -250,12 +250,12 @@ def __init__(self, **kwargs):
250
250
251
251
# Storing option-value as a keyword dictionary.
252
252
self .kwdict = {}
253
- # Loop over the alias dictionary.
254
- # The value of each key is an Alias object or a sequence of Alias objects.
255
- # If it is a single Alias object, we will use its _value property.
256
- # If it is a sequence of Alias objects, we will concatenate their _value
257
- # properties into a single string.
258
253
254
+ # The value of each key in aliasdict is an Alias object or a sequence of Alias
255
+ # objects. If it is a single Alias object, we will use its _value property. If
256
+ # it is a sequence of Alias objects, we will concatenate their _value properties
257
+ # into a single string.
258
+ #
259
259
# Note that alias._value is converted by the _to_string method and can only be
260
260
# None, string or sequence of strings.
261
261
# - None means the parameter is not specified.
@@ -268,7 +268,6 @@ def __init__(self, **kwargs):
268
268
self .kwdict [option ] = "" .join (values )
269
269
elif aliases ._value is not None : # A single Alias object and not None.
270
270
self .kwdict [option ] = aliases ._value
271
- # Now, the dictionary value should be a string or a sequence of strings.
272
271
273
272
def update (self , kwargs : Mapping [str , Any ]):
274
273
"""
0 commit comments