Skip to content

Commit fe0b3d0

Browse files
schema: fix comment in Import class
The cdata type that is actually lysp_import, fix it. Closes: #102 Signed-off-by: Stefan Gula <steweg@gmail.com> Signed-off-by: Samuel Gauthier <samuel.gauthier@6wind.com>
1 parent 3fc55b0 commit fe0b3d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libyang/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ class Import:
300300

301301
def __init__(self, context: "libyang.Context", cdata, module):
302302
self.context = context
303-
self.cdata = cdata # C type: "struct lysp_revision *"
303+
self.cdata = cdata # C type: "struct lysp_import *"
304304
self.module = module
305305

306306
def name(self) -> str:

0 commit comments

Comments
 (0)