Files: 89a367fda7adddc793a2ebab82ecd312a098aebe / steps / pub.py
696 bytesRaw
1 | from steps import clear_screen |
2 | |
3 | def 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 | |
19 | if __name__ == "__main__": |
20 | main(details) |
21 |
Built with git-ssb-web