how to access a func in a class by another func in python code example
Example: call a function from another class python
class A:
def method1(arg1, arg2):
# do code here
class B:
A.method1(1,2)
class A:
def method1(arg1, arg2):
# do code here
class B:
A.method1(1,2)