summaryrefslogtreecommitdiff
path: root/orb_utils.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-01-26 21:34:26 -0800
committerScott <[email protected]>2022-01-26 21:34:26 -0800
commit36fea7f15ed17150691b5b3ead75450e575229ef (patch)
tree883ec076d7abe7683231244d27ca2c603ffcf031 /orb_utils.py
parenta0c6b6c28214e0f5167bc25690ada5d83d933086 (diff)
Ran black code formatter on everything.
Diffstat (limited to 'orb_utils.py')
-rw-r--r--orb_utils.py8
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}'")