Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
local
/
lib
/
python3.10
/
dist-packages
/
ansible_test
/
_internal
/
cli
📤 Upload
📝 New File
📁 New Folder
Close
Editing: converters.py
"""Converters for use as the type argument for arparse's add_argument method.""" from __future__ import annotations import argparse def key_value_type(value: str) -> tuple[str, str]: """Wrapper around key_value.""" return key_value(value) def key_value(value: str) -> tuple[str, str]: """Type parsing and validation for argparse key/value pairs separated by an '=' character.""" parts = value.split('=') if len(parts) != 2: raise argparse.ArgumentTypeError('"%s" must be in the format "key=value"' % value) return parts[0], parts[1]
Save
Cancel