From 4b98052ed769c1fbfdfef8ae7a6ce8c4df270d0f Mon Sep 17 00:00:00 2001
From: Angello Astorga <aastorg2@illinois.edu>
Date: Tue, 25 Oct 2022 23:02:55 -0500
Subject: [PATCH] renaming method name

---
 teacher_base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/teacher_base.py b/teacher_base.py
index 5e34aa9..19cd943 100644
--- a/teacher_base.py
+++ b/teacher_base.py
@@ -36,7 +36,7 @@ class TeacherBase(abc.ABC):
         pass
 
     @abc.abstractmethod
-    def is_positive_example(self, ex) -> Optional[bool]:
+    def is_safe_state(self, ex) -> Optional[bool]:
         raise NotImplementedError
 
     @abc.abstractmethod
-- 
GitLab