7 lines
130 B
Python
7 lines
130 B
Python
class Notetaker:
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def generate_note(self, note):
|
|
print("Received note: " + note) |