Clean up the index code a bit and add index validation

This commit is contained in:
Veronica Berglyd Olsen
2022-05-29 00:18:48 +02:00
parent 94ba7a2f94
commit 347d34bf83
3 changed files with 97 additions and 67 deletions
+3 -3
View File
@@ -123,15 +123,15 @@ class NWProject():
##
@property
def index(self) -> NWIndex:
def index(self):
return self._projIndex
@property
def tree(self) -> NWTree:
def tree(self):
return self._projTree
@property
def options(self) -> OptionState:
def options(self):
return self._optState
##