RAHHH
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
class A:
|
||||
def a(self) -> str:
|
||||
return "b"
|
||||
|
||||
|
||||
class B(A):
|
||||
def b(self) -> str:
|
||||
return "c"
|
||||
|
||||
|
||||
class Inherit(A):
|
||||
def a(self) -> str:
|
||||
return "d"
|
||||
Reference in New Issue
Block a user