mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-01-08 10:45:08 +02:00
16 lines
404 B
Python
16 lines
404 B
Python
# Create class SmallTalk
|
|
# Is child of Command
|
|
# Module for speaking with voice assistent
|
|
# See class Command
|
|
|
|
|
|
|
|
from Command import Command # import parent class
|
|
|
|
class SmallTalk(Command):
|
|
def start(this, string): # main method
|
|
print('Hello, World!')
|
|
|
|
def confirm(this): # optional method
|
|
return True
|