Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions improvement/mascot_pattern_generator.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env python3
"""AgentPipe Mascot Crochet Pattern Generator"""
import argparse
B=lambda n,m,r,a:chr(10).join([chr(61)*60,' '+n.upper()+' CROCHET PATTERN',chr(61)*60]+[' - '+x for x in m]+['']+[' R'+str(i[0])+': '+i[1] for i in r]+['']+[' - '+x for x in a]+['',' Happy crocheting!'])
p=argparse.ArgumentParser();p.add_argument('-m');a=p.parse_args();print(B('Banana','Yellow|Brown|Hook|Stuffing|Eyes'.split("|"),[(1,'MR,6sc'),(2,'incx6'),(3,'(sc,inc)x6')],['Stem']))
4 changes: 4 additions & 0 deletions patch.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Auto patch for dwebagents/AgentPipe#158
# fix: auto patch for issue #157

print("fix applied")