You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.1 KiB

In [1]:
class tridentLeaf:
    def __init__(self,something,somethingelse):
        self.leftProng = None
        self.middleProng = None
        self.rightProng = None
        self.something = something
        self.somethingelse = somethingelse
In [ ]: