@@ -22,18 +22,26 @@ def __call__(self):
22
22
yield from super ().__call__ ()
23
23
24
24
yield from self .slow_type ("Welcome to Planet Butter" , line = 4 , delay = 0.05 )
25
- yield from self .slow_type ("You killed all the other butterflies" , line = 5 , delay = 0.05 )
25
+ yield from self .slow_type (
26
+ "You killed all the other butterflies" , line = 5 , delay = 0.05
27
+ )
26
28
yield from self .slow_type ("Big Butta and his minions" , line = 6 , delay = 0.05 )
27
29
yield from self .slow_type ("are the only ones left!" , line = 7 , delay = 0.05 )
28
30
yield self .pause (1 )
29
31
self .terminal .clear ()
30
- yield from self .slow_type ("You should be careful here!" , delay = 0.05 , color = "red" , blink = True )
31
- yield from self .slow_type ("This is the home planet of Butterflies." , line = 6 , delay = 0.05 )
32
+ yield from self .slow_type (
33
+ "You should be careful here!" , delay = 0.05 , color = "red" , blink = True
34
+ )
35
+ yield from self .slow_type (
36
+ "This is the home planet of Butterflies." , line = 6 , delay = 0.05
37
+ )
32
38
yield self .pause (2 )
33
39
self .terminal .clear ()
34
40
35
41
yield from self .slow_type ("The planet is also made of butter" , delay = 0.05 )
36
- yield from self .slow_type ("so Big Butta is most powerful here," , line = 6 , delay = 0.05 )
42
+ yield from self .slow_type (
43
+ "so Big Butta is most powerful here," , line = 6 , delay = 0.05
44
+ )
37
45
yield from self .slow_type ("you might have a hard time..." , line = 7 , delay = 0.05 )
38
46
yield self .pause (1 )
39
47
self .terminal .clear ()
0 commit comments