fixed more stuff

This commit is contained in:
sose 2021-05-03 22:30:50 +00:00
parent 80fffbce3c
commit 43c8999f35
4 changed files with 6 additions and 6 deletions

View File

@ -38,3 +38,5 @@ furore
roughhouse roughhouse
wayfaring wayfaring
ErbB-2 ErbB-2
string
yerba buena

View File

@ -1 +1 @@
13 14

View File

@ -111,7 +111,6 @@ translation
radar radar
existence existence
air air
string
change change
hara-kiri hara-kiri
aa aa
@ -360,7 +359,6 @@ metadata
pollen pollen
collation collation
spalt spalt
yerba buena
seventh heaven seventh heaven
ahinsa ahinsa
tick-tack-toe tick-tack-toe

View File

@ -263,7 +263,7 @@ def get_a_noun():
while True: while True:
print("forming another toot...") print("forming another toot...")
random_number: int = random.randint(0, 2) random_number: int = random.randint(0, 1)
action: Optional[str] action: Optional[str]
if random_number == 0: if random_number == 0:
action = get_an_action() action = get_an_action()
@ -273,7 +273,7 @@ while True:
noun1 = get_a_noun() noun1 = get_a_noun()
noun2 = get_a_noun() noun2 = get_a_noun()
mastodon.toot(meme.format(action, noun1, noun2)) mastodon.toot(meme.format(action, noun1, noun2))
print("tooted " + meme.format(action, noun1, noun2).lower()) print("tooted " + meme.format(action, noun1, noun2))
elif random_number == 1: elif random_number == 1:
action = get_a_food_action() action = get_a_food_action()
if action is None: if action is None:
@ -282,6 +282,6 @@ while True:
noun1 = get_a_noun() noun1 = get_a_noun()
noun2 = get_a_noun() noun2 = get_a_noun()
mastodon.toot(meme.format(action, noun1, noun2).lower()) mastodon.toot(meme.format(action, noun1, noun2).lower())
print("tooted " + meme.format(action, noun1, noun2)) print("tooted " + meme.format(action, noun1, noun2).lower())
sleep(43200) # toot twice a day sleep(43200) # toot twice a day