Nicolas
Results
2
issues of
Nicolas
When a YANG definition of a container has the statement "config false;", the Python bindings generated for this container should have "is_config=False" in its __init__ method, but it was not...
Given the following YANG module: ``` module my-module { container my-container { config false; container my-nested-container { leaf my-leaf { type uint8; } } } } ``` The Python definition...