Reduce the doctest lease duration...
[python_utils.git] / orb_utils.py
index fe82e2ebfc97c0cf8ec8f965b5fc51746d6e0879..e6b06a6c744ce9d91eef76268862b08a62e89a32 100644 (file)
@@ -1,12 +1,13 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
 """Utilities related to changing the orb's color."""
 
 import os
 
 import config
 
-
 parser = config.add_commandline_args(
     f"Orb Utils ({__file__})",
     "Args having to do with controlling Scott's Orb.",
@@ -28,6 +29,7 @@ parser.add_argument(
 
 
 def make_orb(color: str) -> None:
+    """Make the orb on my desk a particular color."""
     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}'")