More type annotations.
[python_utils.git] / misc_utils.py
index 62e579846b52bed06ade1a37b3e1959bc5c3fa0c..fc1d5c28e86c5201ec25a800c93f4ce749578402 100644 (file)
@@ -2,34 +2,7 @@
 
 import os
 
-import string_utils
-
 
 def is_running_as_root() -> bool:
+    """Returns True if running as root."""
     return os.geteuid() == 0
-
-
-def is_are(n: int) -> str:
-    if n == 1:
-        return "is"
-    return "are"
-
-
-def pluralize(n: int) -> str:
-    if n == 1:
-        return ""
-    return "s"
-
-
-def thify(n: int) -> str:
-    digit = str(n)
-    assert string_utils.is_integer_number(digit)
-    digit = digit[-1:]
-    if digit == "1":
-        return "st"
-    elif digit == "2":
-        return "nd"
-    elif digit == "3":
-        return "rd"
-    else:
-        return "th"