• rtxn@lemmy.world
    link
    fedilink
    English
    arrow-up
    12
    ·
    edit-2
    4 days ago

    bisexual.py:

    def is_sexually_attracted_to(self, other):
        return other.gender in self.preferred_gender
    

    pansexual.py:

    def is_sexually_attracted_to(self, other):
        # TODO: factors based on other traits TBI
        return True
    

    Close enough?