mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
8 lines
168 B
Python
8 lines
168 B
Python
|
import DNANode
|
||
|
|
||
|
class DNASignText(DNANode.DNANode):
|
||
|
COMPONENT_CODE = 7
|
||
|
|
||
|
def __init__(self):
|
||
|
DNANode.DNANode.__init__(self, '')
|
||
|
self.letters = ''
|