Skip to content

Commit 55bb759

Browse files
committed
NotImplemented->NotImplementedError in oopomdp.pyx
1 parent 64e4669 commit 55bb759

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pomdp_py/framework/oopomdp.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ cdef class OOState(State):
133133
return self._hashcache
134134

135135
def __getitem__(self, index):
136-
raise NotImplemented
136+
raise NotImplementedError
137137

138138
def __len__(self):
139-
raise NotImplemented
139+
raise NotImplementedError
140140

141141
def get_object_state(self, objid):
142142
"""get_object_state(self, objid)

0 commit comments

Comments
 (0)