removed trailing spaces, reran black

This commit is contained in:
Andrea Rogers 2021-10-16 16:55:25 -04:00
commit c6d28f7047
4 changed files with 13 additions and 13 deletions

View file

@ -6,20 +6,20 @@ if __name__ == "__main__":
name = ARGV.pop(0) name = ARGV.pop(0)
welcome = ( welcome = (
"" ""
+ " ⣠⣾⢿⣿⣷⣦ \n" + " ⣠⣾⢿⣿⣷⣦\n"
+ " ⣀⣼⢟⡱⣆⡹⠹⣿⣇ ⢠⣶⣿⠿⣦⡀ \n" + " ⣀⣼⢟⡱⣆⡹⠹⣿⣇ ⢠⣶⣿⠿⣦⡀\n"
+ " ⠈⠛⠛⠊⠉⠁ ⠹⣿⣧⡀ ⢠⣿⠏⠁⠝⢪⣻⡦ \n" + " ⠈⠛⠛⠊⠉⠁ ⠹⣿⣧⡀ ⢠⣿⠏⠁⠝⢪⣻⡦\n"
+ " ⠙⢻⣿⡄ ⣴⣿⠏ \n" + " ⠙⢻⣿⡄ ⣴⣿⠏\n"
+ " ⣿⣷ ⢸⣿⠁ \n" + " ⣿⣷ ⢸⣿⠁\n"
+ " ⢀⣽⣿⣿⣿⣿⣿⣶⣦⣼⠟ \n" + " ⢀⣽⣿⣿⣿⣿⣿⣶⣦⣼⠟\n"
+ " ⣀⡀ ⢀⣴⣿⣿⣿⢿⣿⣿⣿⣿⣿⣿⣷⡀ \n" + " ⣀⡀ ⢀⣴⣿⣿⣿⢿⣿⣿⣿⣿⣿⣿⣷⡀\n"
+ "⢀⣴⣿⡿⢿⣷⡄ ⣼⣿⣿⣿⣿ ⠈⠙⠻⣿⣿⣿⣿⣷ \n" + "⢀⣴⣿⡿⢿⣷⡄ ⣼⣿⣿⣿⣿ ⠈⠙⠻⣿⣿⣿⣿⣷\n"
+ "⣾⣿⠱⠉⠛⣿⣿⣄ ⣀⣿⣿⣿⣿⣿ ⣀⣽⣿⣿⣿ ⣠⣶⣿⣷⣦⡀\n" + "⣾⣿⠱⠉⠛⣿⣿⣄ ⣀⣿⣿⣿⣿⣿ ⣀⣽⣿⣿⣿ ⣠⣶⣿⣷⣦⡀\n"
+ "⠈⠁ ⠙⠿⠿⠛⠛⢻⣿⣿⣿⣿ ⣀⣴⣾⣿⣿⣿⣿⣿⣤⣾⣿⡿⠖⡯⢿⣷\n" + "⠈⠁ ⠙⠿⠿⠛⠛⢻⣿⣿⣿⣿ ⣀⣴⣾⣿⣿⣿⣿⣿⣤⣾⣿⡿⠖⡯⢿⣷\n"
+ " ⠈⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠉⠛⠛⠉ ⠹⠟\n" + " ⠈⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠉⠛⠛⠉ ⠹⠟\n"
+ " ⢀⣴⡾⠟⠿⣿⣿⣿⣿⠿⢿⡍ \n" + " ⢀⣴⡾⠟⠿⣿⣿⣿⣿⠿⢿⡍\n"
+ " ⣀⣾⡟ ⠈⣿⣶⣤⣤⣄⡀ \n" + " ⣀⣾⡟ ⠈⣿⣶⣤⣤⣄⡀\n"
+ " ⣰⣾⣿⣿⣿⣿⠏ ⠈⠛⠛⢿⣿⣿⣦ \n" + " ⣰⣾⣿⣿⣿⣿⠏ ⠈⠛⠛⢿⣿⣿⣦\n"
+ " ⠛⠉⠉⠉⠉ _ _ ⠈⠻⣿⣿⣇_ _\n" + " ⠛⠉⠉⠉⠉ _ _ ⠈⠻⣿⣿⣇_ _\n"
+ " ___ __ _ _ _(_)__| |___ __| | |\n" + " ___ __ _ _ _(_)__| |___ __| | |\n"
+ "(_-</ _` | || | / _` |___/ _` | |\n" + "(_-</ _` | || | / _` |___/ _` | |\n"

View file

@ -2,5 +2,6 @@ import typing
from .downloader import main as real_main from .downloader import main as real_main
def main(args: [str], name: str) -> int: def main(args: [str], name: str) -> int:
return real_main(args=args, name=name) return real_main(args=args, name=name)

View file

@ -65,7 +65,7 @@ class LinodeProxy:
create_cmd = ( create_cmd = (
"linode-cli --json linodes create " "linode-cli --json linodes create "
+ "--image linode/arch " + "--image linode/arch "
+ '--authorized_keys ' + "--authorized_keys "
+ '"' + '"'
+ self.pubkey + self.pubkey
+ '"' + '"'

View file

@ -39,4 +39,3 @@ def runcmd(args):
except KeyboardInterrupt: except KeyboardInterrupt:
proc.terminate() proc.terminate()
return b"" return b""