From 36fea7f15ed17150691b5b3ead75450e575229ef Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 26 Jan 2022 21:34:26 -0800 Subject: Ran black code formatter on everything. --- orb_utils.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'orb_utils.py') diff --git a/orb_utils.py b/orb_utils.py index 5bc6d1a..fe82e2e 100644 --- a/orb_utils.py +++ b/orb_utils.py @@ -16,20 +16,18 @@ parser.add_argument( default="/Users/scott/orb_color", metavar="FILENAME", type=str, - help="The location of the orb file on whatever machine is hosting it." + help="The location of the orb file on whatever machine is hosting it.", ) parser.add_argument( "--orb_utils_user_machine", default="scott@cheetah.house", metavar="USER@HOSTNAME", type=str, - help="The username/machine combo that is hosting the orb." + help="The username/machine combo that is hosting the orb.", ) def make_orb(color: str) -> None: user_machine = config.config['orb_utils_user_machine'] orbfile_path = config.config['orb_utils_file_location'] - os.system( - f"ssh {user_machine} 'echo \"{color}\" > {orbfile_path}'" - ) + os.system(f"ssh {user_machine} 'echo \"{color}\" > {orbfile_path}'") -- cgit v1.3