How can I make typing.overload work with enum.Enum?

typing.overload decorator type-hints don’t seem to work with enum.Enum

I have a class that with a method called ‘get_component’. This method should return the component that has a matching ID to the one given. The IDs are stored as Enums.

Each one of the components stored inside of the main class has different attributes and methods associated with it.

In order to make my code more readable and easy to deal with, I want to use @overload with the ‘get_component’ method multiple times so that the type-hints function correctly for each component.

Additionally, I am using python3.12 and VSCode.

Here is some code I wrote that illustrates the problem:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>from typing import overload
from enum import Enum
class Ent:
def __init__(self):
self.comps = []
@overload
def get_comp(self, id:'CompType.MOVE') -> 'Move': ...
@overload
def get_comp(self, id:'CompType.POSITION') -> 'Position': ...
def get_comp(self, id:int) -> 'Comp':
...
class Comp:
def __init__(self):
self.id = CompType.NONE
class Move(Comp):
def __init__(self):
self.id = CompType.MOVE
class Position(Comp):
def __init__(self):
self.id = CompType.POSITION
class CompType(Enum):
NONE = 0
MOVE = 1
POSITION = 2
if __name__ == '__main__':
ent = Ent()
ent.comps.append(Move())
ent.comps.append(Position())
comp1 = ent.get_comp(CompType.MOVE)
comp2 = ent.get_comp(CompType.POSITION)
</code>
<code>from typing import overload from enum import Enum class Ent: def __init__(self): self.comps = [] @overload def get_comp(self, id:'CompType.MOVE') -> 'Move': ... @overload def get_comp(self, id:'CompType.POSITION') -> 'Position': ... def get_comp(self, id:int) -> 'Comp': ... class Comp: def __init__(self): self.id = CompType.NONE class Move(Comp): def __init__(self): self.id = CompType.MOVE class Position(Comp): def __init__(self): self.id = CompType.POSITION class CompType(Enum): NONE = 0 MOVE = 1 POSITION = 2 if __name__ == '__main__': ent = Ent() ent.comps.append(Move()) ent.comps.append(Position()) comp1 = ent.get_comp(CompType.MOVE) comp2 = ent.get_comp(CompType.POSITION) </code>
from typing import overload
from enum import Enum

class Ent:
    def __init__(self):
        self.comps = []

    @overload
    def get_comp(self, id:'CompType.MOVE') -> 'Move': ...

    @overload
    def get_comp(self, id:'CompType.POSITION') -> 'Position': ...

    def get_comp(self, id:int) -> 'Comp':
        ...

class Comp:
    def __init__(self):
        self.id = CompType.NONE

class Move(Comp):
    def __init__(self):
        self.id = CompType.MOVE

class Position(Comp):
    def __init__(self):
        self.id = CompType.POSITION

class CompType(Enum):
    NONE = 0
    MOVE = 1
    POSITION = 2

if __name__ == '__main__':
    ent = Ent()
    ent.comps.append(Move())
    ent.comps.append(Position())

    comp1 = ent.get_comp(CompType.MOVE)
    comp2 = ent.get_comp(CompType.POSITION)

New contributor

Brett Dean is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật