def give_me_an_image():
     return at_random(
         'Give me a direct image URL',
         "I don't see an image. Message me a direct image URL please",
     )
 def unknown_image():
     return at_random(
         'I have no clue!',
         'Unknown',
     )
 def give_me_an_image():
     return at_random(
         'Give me a direct image URL or attach it to your tweet',
         "I don't see an image. Tweet a direct image URL or attach it please",
     )
 def something_went_wrong():
     return at_random(
         "Something went wrong. Try again later?",
     )
 def not_an_image():
     return at_random(
         "That doesn't look like an image",
         "Are you sure it's an image?",
     )
 def give_me_an_image():
     return at_random(
         'Give me a direct image URL',
         "I don't see an image. Message me a direct image URL please",
     )
 def took_too_long():
     return at_random(
         "It took too long to get the image. Try again?",
     )
 def give_me_an_image():
     return at_random(
         'Give me a direct image URL or attach it to your tweet',
         "I don't see an image. Tweet a direct image URL or attach it please",
     )
 def unknown_image():
     return at_random(
         'I have no clue!',
         'Unknown',
     )
예제 #10
0
 def not_an_image():
     return at_random(
         "That doesn't look like an image",
         "Are you sure it's an image?",
     )
예제 #11
0
 def something_went_wrong():
     return at_random("Something went wrong. Try again later?", )
예제 #12
0
 def took_too_long():
     return at_random("It took too long to get the image. Try again?", )