diff options
| author | Scott <[email protected]> | 2022-01-26 21:34:26 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-01-26 21:34:26 -0800 |
| commit | 36fea7f15ed17150691b5b3ead75450e575229ef (patch) | |
| tree | 883ec076d7abe7683231244d27ca2c603ffcf031 /orb_utils.py | |
| parent | a0c6b6c28214e0f5167bc25690ada5d83d933086 (diff) | |
Ran black code formatter on everything.
Diffstat (limited to 'orb_utils.py')
| -rw-r--r-- | orb_utils.py | 8 |
1 files changed, 3 insertions, 5 deletions
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="[email protected]", 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}'") |
