Hi,
In Cursor, I have an Abstract class and some Implementation classes of it. How to find the implementation classes by a shortcut? For example, I press “cmd+F12” on AbstractUser and no implementation classes come.
from abc import ABC, abstractmethod
from user import User
class AbstractUser(ABC):
@abstractmethod
def get_user_by_id(self, user_id: int) → User:
pass