Source code for myrepo.checkpoint.b
from .a import A
[docs]class B(A):
def __init__(self, name, salary):
super(B, self).__init__(name, salary)
def _local_func(self, x: int):
return "test func"
from .a import A
[docs]class B(A):
def __init__(self, name, salary):
super(B, self).__init__(name, salary)
def _local_func(self, x: int):
return "test func"