Ran black code formatter on everything.
[python_utils.git] / orb_utils.py
index 5bc6d1a9abd6ae8addba94138b7dc15082a11031..fe82e2ebfc97c0cf8ec8f965b5fc51746d6e0879 100644 (file)
@@ -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}'")