More cleanup, yey!
[python_utils.git] / function_utils.py
index f027f8ce9d07fd22c7d18af2cccc0f92413115d9..f10776211df3ef8347d48486671577bc18d044bc 100644 (file)
@@ -1,5 +1,7 @@
 #!/usr/bin/env python3
 
+"""Helper methods dealing with functions."""
+
 from typing import Callable
 
 
@@ -18,6 +20,7 @@ def function_identifier(f: Callable) -> str:
     """
     if f.__module__ == '__main__':
         from pathlib import Path
+
         import __main__
 
         module = __main__.__file__