Skip to content

Commit

Permalink
fix: this_chicken typo (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
MeetWq authored Jan 18, 2024
1 parent 4dcf2c1 commit 0492703
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meme_generator/memes/this_chicken/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
img_dir = Path(__file__).parent / "images"


def this_chichen(images: List[BuildImage], texts, args):
def this_chicken(images: List[BuildImage], texts, args):
text = texts[0] if texts else "这是十二生肖中的鸡"
img = images[0].convert("RGBA").resize((640, 640), keep_ratio=True)

Expand All @@ -35,8 +35,8 @@ def this_chichen(images: List[BuildImage], texts, args):


add_meme(
"this_chichen",
this_chichen,
"this_chicken",
this_chicken,
min_images=1,
max_images=1,
max_texts=1,
Expand Down

0 comments on commit 0492703

Please sign in to comment.