git ssb

2+

Zach! / onboarding-link-generator



Tree: ab68e4cb17bd0f1bda42fed9ccd8674bbfd4e406

Files: ab68e4cb17bd0f1bda42fed9ccd8674bbfd4e406 / steps / pub.py

696 bytesRaw
1from steps import clear_screen
2
3def main(details):
4 """Add the specific pub they'll be joining."""
5 ascii_art = """
6
7██████╗ ██╗ ██╗██████╗
8██╔══██╗██║ ██║██╔══██╗
9██████╔╝██║ ██║██████╔╝
10██╔═══╝ ██║ ██║██╔══██╗
11██║ ╚██████╔╝██████╔╝
12╚═╝ ╚═════╝ ╚═════╝
13
14 """
15 clear_screen.main()
16 print(ascii_art)
17 details['pub'] = input("What pub are you inviting them to?\n> ")
18
19if __name__ == "__main__":
20 main(details)
21

Built with git-ssb-web