-
Notifications
You must be signed in to change notification settings - Fork 246
Open
Labels
Description
Describe the Bug
from abc import ABC
class A(ABC):
def foo(self):
raise NotImplementedError()
class B(A):
def foo(self):
x = 1
print(x)context: langgenius/dify#30853 (comment)
Sandbox Link
(Only applicable for extension issues) IDE Information
No response
stroxler