use plus
This commit is contained in:
parent
3c193428ef
commit
295f64c3c8
4 changed files with 4 additions and 4 deletions
|
|
@ -21,7 +21,7 @@ For subscriptions in the form of
|
|||
|
||||
.. code-block:: yaml
|
||||
|
||||
\ Subscription Name:
|
||||
+ Subscription Name:
|
||||
Music Videos:
|
||||
- "https://url1.com/..."
|
||||
Concerts:
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class OverrideVariables:
|
|||
|
||||
.. code-block:: yaml
|
||||
|
||||
\\ Subscription Name:
|
||||
+ Subscription Name:
|
||||
Music Videos:
|
||||
- "https://url1.com/..."
|
||||
Concerts:
|
||||
|
|
|
|||
|
|
@ -317,7 +317,7 @@ class SubscriptionValidator(SubscriptionOutput):
|
|||
# Subscription defined as
|
||||
# "\Sub Name":
|
||||
# custom_key: "value"
|
||||
elif key.startswith("\\"):
|
||||
elif key.startswith("+"):
|
||||
self._children.append(
|
||||
SubscriptionMapValidator(
|
||||
name=obj_name,
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ def preset_with_subscription_overrides_map(
|
|||
preset_with_subscription_value,
|
||||
**{
|
||||
"parent_preset_2 | parent_preset_1": {
|
||||
"\\ test_2_1": {
|
||||
"+ test_2_1": {
|
||||
"custom_key": "custom_value",
|
||||
"custom_list": [
|
||||
"elem1",
|
||||
|
|
|
|||
Loading…
Reference in a new issue