You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-06-27 22:28:33 +02:00
11 lines
319 B
Python
11 lines
319 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(f'Hello, {string=}')
|