diff --git a/libyang/schema.py b/libyang/schema.py index a47974e..db0514d 100644 --- a/libyang/schema.py +++ b/libyang/schema.py @@ -241,6 +241,7 @@ def parse_data_dict( rpc: bool = False, rpcreply: bool = False, notification: bool = False, + store_only: bool = False, ) -> "libyang.data.DNode": """ Convert a python dictionary to a DNode object following the schema of this @@ -276,6 +277,7 @@ def parse_data_dict( rpc=rpc, rpcreply=rpcreply, notification=notification, + store_only=store_only, )