Adds the ability to create map and list-based override variables.
For example, you can now create lists like this:
```
overrides:
urls:
- "https://...1"
- "https://...2"
```
which is equivalent to:
```
overrides:
urls: >-
{
[
"https://...1",
"https://...2",
]
}
```
Likewise, maps can now look like:
```
overrides:
music_video_category:
concerts:
- "https://...1"
- "https://...2"
interviews:
- "https://...3"
```
which is equivalent to:
```
overrides:
music_video_category: >-
{
"concerts": [
"https://...1",
"https://...2"
],
"interviews": [
"https://...3"
]
}
```
|
||
|---|---|---|
| .. | ||
| __init__.py | ||
| audo_codec_validator.py | ||
| file_path_validators.py | ||
| nfo_validators.py | ||
| regex_validator.py | ||
| source_variable_validator.py | ||
| strict_dict_validator.py | ||
| string_datetime.py | ||
| string_formatter_validators.py | ||
| string_select_validator.py | ||
| validators.py | ||