a big-brained Twitter bot that replies to mentions with Rick and Morty quotes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import typing |
|
|
|
from .cli import main as real_main |
|
|
|
|
|
def main(args: [str], name: str) -> int: |
|
return real_main(args=args, name=name)
|
|
|