File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -240,9 +240,6 @@ def _get_channels_mapping() -> dict[type[SchemaBase], str]:
240
240
class Parameter (_expr_core .OperatorMixin ):
241
241
"""A Parameter object"""
242
242
243
- # NOTE: If you change this class, make sure that the protocol in
244
- # altair/vegalite/v5/schema/core.py is updated accordingly if needed.
245
-
246
243
_counter : int = 0
247
244
248
245
@classmethod
Original file line number Diff line number Diff line change @@ -336,11 +336,9 @@ def get_python_type_representation(
336
336
class_names = ["SchemaBase" ]
337
337
if self .title == "ExprRef" :
338
338
# In these cases, a value parameter is also always accepted.
339
- # We use the _Parameter to indicate this although this
340
- # protocol would also pass for selection parameters but
341
- # due to how the Parameter class is defined, it would be quite
342
- # complex to further differentiate between a value and
343
- # a selection parameter based on the type system (one could
339
+ # It would be quite complex to further differentiate
340
+ # between a value and a selection parameter based on
341
+ # the type system (one could
344
342
# try to check for the type of the Parameter.param attribute
345
343
# but then we would need to write some overload signatures for
346
344
# api.param).
You can’t perform that action at this time.
0 commit comments