Skip to content

Commit d95d620

Browse files
fix python
1 parent 1d4b2b8 commit d95d620

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doggo.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def tool(self):
6868

6969
class StandUp(Trick):
7070
def __init__(self, dog):
71-
super().__init__(dog, "stand_up", "Make the dog stand up", "tools/stand_up.json")
71+
super().__init__(dog, "stand_up", "Make the dog stand up", "tools/empty.json")
7272

7373
async def act(self, params):
7474
await self.dog.maybe_reconnect()
@@ -79,7 +79,7 @@ async def act(self, params):
7979

8080
class Damp(Trick):
8181
def __init__(self, dog):
82-
super().__init__(dog, "lie_down", "Make the dog lie down", "tools/lie_down.json")
82+
super().__init__(dog, "lie_down", "Make the dog lie down", "tools/empty.json")
8383

8484
async def act(self, params):
8585
await self.dog.maybe_reconnect()
@@ -90,7 +90,7 @@ async def act(self, params):
9090

9191
class Hello(Trick):
9292
def __init__(self, dog):
93-
super().__init__(dog, "hello", "Make the dog say hello", "tools/hello.json")
93+
super().__init__(dog, "hello", "Make the dog say hello", "tools/empty.json")
9494

9595
async def act(self, params):
9696
await self.dog.maybe_reconnect()
@@ -112,7 +112,7 @@ async def act(self, params):
112112

113113
class Stop(Trick):
114114
def __init__(self, dog):
115-
super().__init__(dog, "stop", "Make the dog stop", "tools/stop.json")
115+
super().__init__(dog, "stop", "Make the dog stop", "tools/empty.json")
116116

117117
async def act(self, params):
118118
await self.dog.maybe_reconnect()
@@ -332,7 +332,7 @@ async def loop(dog):
332332

333333

334334
@click.command()
335-
@click.option("--voice", type=click.Choice(VOICES.keys()), default="michael")
335+
@click.option("--voice", type=click.Choice(VOICES.keys()), default="burt")
336336
@click.option("--alive/--dead", is_flag=True, default=True)
337337
@click.option("--configure-input/--no-configure-input", is_flag=True, default=False)
338338
@click.option("--input-sample-rate", type=int, default=44100)

0 commit comments

Comments
 (0)